forked from potsda.mn/mobilizon
Typo
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
7709c2c566
commit
7ec2259ea5
|
@ -84,7 +84,7 @@ export const CREATE_EVENT = gql`
|
||||||
$description: String!,
|
$description: String!,
|
||||||
$organizerActorId: Int!,
|
$organizerActorId: Int!,
|
||||||
$categoryId: Int!,
|
$categoryId: Int!,
|
||||||
$beginsOn: DateTime!,
|
$beginsOn: DateTime!
|
||||||
) {
|
) {
|
||||||
createEvent(
|
createEvent(
|
||||||
title: $title,
|
title: $title,
|
||||||
|
@ -92,6 +92,7 @@ export const CREATE_EVENT = gql`
|
||||||
beginsOn: $beginsOn,
|
beginsOn: $beginsOn,
|
||||||
organizerActorId: $organizerActorId,
|
organizerActorId: $organizerActorId,
|
||||||
categoryId: $categoryId
|
categoryId: $categoryId
|
||||||
|
)
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -100,7 +101,7 @@ export const EDIT_EVENT = gql`
|
||||||
$title: String!,
|
$title: String!,
|
||||||
$description: String!,
|
$description: String!,
|
||||||
$organizerActorId: Int!,
|
$organizerActorId: Int!,
|
||||||
$categoryId: Int!,
|
$categoryId: Int!
|
||||||
) {
|
) {
|
||||||
EditEvent(title: $title, description: $description, organizerActorId: $organizerActorId, categoryId: $categoryId) {
|
EditEvent(title: $title, description: $description, organizerActorId: $organizerActorId, categoryId: $categoryId) {
|
||||||
uuid
|
uuid
|
||||||
|
|
Loading…
Reference in a new issue