electerious/Ackee

Query event actions via GraphQL

Open

#247 opened on 2021年5月1日

GitHub で見る
 (1 comment) (0 reactions) (0 assignees)JavaScript (385 forks)github user discovery
help wanted

Repository metrics

Stars
 (4,667 stars)
PR merge metrics
 (PR metrics pending)

説明

Would it be possible to query all actions of an event?

Something like:

query getEventWithActions($eventId: ID!) {
    event(id: $eventId) {
        id
        title
        actions() {
            id
            key
            value
        }
    }
}

which would return the event details with a list of its actions.

コントリビューターガイド