electerious/Ackee

Query event actions via GraphQL

Aberta

#247 aberto em 1 de mai. de 2021

 (1 comentário) (0 reação) (0 responsável)JavaScript (386 forks)github user discovery
help wanted

Métricas do repositório

Stars
 (4.692 estrelas)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

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.

Guia do colaborador