Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-11-18 16:06:24 +01:00
parent 3d905714c3
commit f35698005a
7 changed files with 20 additions and 6 deletions

View File

@@ -70,7 +70,7 @@ query {
}`;
export const CURRENT_ACTOR_CLIENT = gql`
query {
query currentActor {
currentActor @client {
id,
avatar {

View File

@@ -289,6 +289,7 @@ export const EDIT_EVENT = gql`
$picture: PictureInput,
$onlineAddress: String,
$phoneAddress: String,
$organizerActorId: ID,
$category: String,
$physicalAddress: AddressInput,
$options: EventOptionsInput,
@@ -307,6 +308,7 @@ export const EDIT_EVENT = gql`
picture: $picture,
onlineAddress: $onlineAddress,
phoneAddress: $phoneAddress,
organizerActorId: $organizerActorId,
category: $category,
physicalAddress: $physicalAddress
options: $options,