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): class UpdateProjectEntryArgument(ProjectEntryInput):
slug = graphene.String(required=True) id = graphene.ID(required=True)

View File

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