Fix server typo

This commit is contained in:
Ramon Wenger 2022-01-29 21:20:35 +01:00
parent fc24958d9b
commit 59a32451ea
2 changed files with 5 additions and 5 deletions

View File

@ -28,5 +28,5 @@ class AddProjectEntryArgument(ProjectEntryInput):
class UpdateProjectEntryArgument(ProjectEntryInput):
slug = graphene.String(required=True)
id = graphene.ID(required=True)

View File

@ -71,7 +71,7 @@ input AddProjectArgument {
input AddProjectEntryArgument {
description: String
documentUrl: String
project: ID!
project: String!
}
input AddProjectEntryInput {
@ -408,7 +408,7 @@ type DeleteProjectEntryPayload {
}
input DeleteProjectInput {
id: ID!
slug: String!
clientMutationId: String
}
@ -1302,7 +1302,7 @@ input UpdateProjectArgument {
description: String
objectives: String
appearance: String
id: ID!
slug: String!
final: Boolean
}
@ -1335,7 +1335,7 @@ type UpdateProjectPayload {
}
input UpdateProjectSharedStateInput {
id: ID
slug: String
shared: Boolean
clientMutationId: String
}