chaging schemas for front
This commit is contained in:
@@ -2,7 +2,7 @@ mutation CreateActivityLog(
|
||||
$title: String!,
|
||||
$description: String!,
|
||||
$activityType: ActivityType!,
|
||||
$userId: UUID!,
|
||||
$userId: String!,
|
||||
$isRead: Boolean
|
||||
) @auth(level: USER) {
|
||||
activityLog_insert(
|
||||
@@ -21,7 +21,7 @@ mutation UpdateActivityLog(
|
||||
$title: String,
|
||||
$description: String,
|
||||
$activityType: ActivityType,
|
||||
$userId: UUID,
|
||||
$userId: String,
|
||||
$isRead: Boolean
|
||||
) @auth(level: USER) {
|
||||
activityLog_update(
|
||||
|
||||
@@ -23,7 +23,7 @@ query getActivityLogById(
|
||||
}
|
||||
|
||||
query filterActivityLog(
|
||||
$userId: UUID,
|
||||
$userId: String,
|
||||
$activityType: ActivityType,
|
||||
$isRead: Boolean
|
||||
) @auth(level: USER) {
|
||||
|
||||
Reference in New Issue
Block a user