electerious/Ackee

Query event actions via GraphQL

开放

#247 创建于 2021年5月1日

 (1 条评论) (0 个反应) (0 位负责人)JavaScript (386 个派生)github user discovery
help wanted

仓库指标

星标
 (4,692 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

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.

贡献者指南