Fix server typo
This commit is contained in:
parent
fc24958d9b
commit
59a32451ea
|
|
@ -28,5 +28,5 @@ class AddProjectEntryArgument(ProjectEntryInput):
|
||||||
|
|
||||||
|
|
||||||
class UpdateProjectEntryArgument(ProjectEntryInput):
|
class UpdateProjectEntryArgument(ProjectEntryInput):
|
||||||
slug = graphene.String(required=True)
|
id = graphene.ID(required=True)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue