electerious/Ackee

Query event actions via GraphQL

Open

#247 ouverte le 1 mai 2021

Voir sur GitHub
 (1 commentaire) (0 réactions) (0 assignés)JavaScript (385 forks)github user discovery
help wanted

Métriques du dépôt

Stars
 (4 667 stars)
Métriques de merge PR
 (Métriques PR en attente)

Description

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.

Guide contributeur