electerious/Ackee

Query event actions via GraphQL

Open

#247 geöffnet am 1. Mai 2021

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)JavaScript (385 Forks)github user discovery
help wanted

Repository-Metriken

Stars
 (4.667 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

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.

Contributor Guide