mobilizon/js/src/graphql/event.ts

158 lines
2.6 KiB
TypeScript
Raw Normal View History

import gql from 'graphql-tag';
2019-02-22 10:24:41 +00:00
const participantQuery = `
role,
actor {
preferredUsername,
avatarUrl,
name
}
`;
export const FETCH_EVENT = gql`
2019-02-22 10:24:41 +00:00
query($uuid:UUID!) {
event(uuid: $uuid) {
id,
uuid,
url,
local,
title,
description,
beginsOn,
endsOn,
status,
visibility,
thumbnail,
large_image,
publish_at,
# online_address,
# phone_address,
organizerActor {
avatarUrl,
preferredUsername,
name,
},
# attributedTo {
# # avatarUrl,
# preferredUsername,
# name,
# },
participants {
${participantQuery}
},
category {
title,
},
}
}
`;
export const FETCH_EVENTS = gql`
2019-02-22 10:24:41 +00:00
query {
events {
id,
uuid,
url,
local,
title,
description,
beginsOn,
endsOn,
status,
visibility,
thumbnail,
large_image,
publish_at,
# online_address,
# phone_address,
organizerActor {
avatarUrl,
preferredUsername,
name,
},
attributedTo {
avatarUrl,
preferredUsername,
name,
},
category {
title,
2019-02-22 10:24:41 +00:00
},
participants {
${participantQuery}
}
}
2019-02-22 10:24:41 +00:00
}
`;
export const CREATE_EVENT = gql`
2019-02-22 10:24:41 +00:00
mutation CreateEvent(
$title: String!,
$description: String!,
$organizerActorId: String!,
$category: String!,
$beginsOn: DateTime!
) {
createEvent(
title: $title,
description: $description,
beginsOn: $beginsOn,
organizerActorId: $organizerActorId,
category: $category
) {
2019-02-22 10:24:41 +00:00
id,
uuid,
title
}
}
`;
export const EDIT_EVENT = gql`
2019-02-22 10:24:41 +00:00
mutation EditEvent(
$title: String!,
$description: String!,
$organizerActorId: Int!,
$categoryId: Int!
) {
EditEvent(title: $title, description: $description, organizerActorId: $organizerActorId, categoryId: $categoryId) {
2019-02-22 10:24:41 +00:00
uuid
}
2019-02-22 10:24:41 +00:00
}
`;
export const JOIN_EVENT = gql`
2019-02-22 10:24:41 +00:00
mutation JoinEvent($id: Int!, $actorId: Int!) {
joinEvent(
id: $id,
actorId: $actorId
) {
actor {
${participantQuery}
},
role
}
}
`;
export const LEAVE_EVENT = gql`
mutation LeaveEvent($id: Int!, $actorId: Int!) {
leaveEvent(
id: $id,
actorId: $actorId
) {
2019-02-22 10:24:41 +00:00
actor {
id
}
}
}
`;
export const DELETE_EVENT = gql`
mutation DeleteEvent($id: Int!, $actorId: Int!) {
deleteEvent(
id: $id,
actorId: $actorId
)
}
`;