electerious/Ackee

Query event actions via GraphQL

Open

#247 创建于 2021年5月1日

在 GitHub 查看
 (1 评论) (0 反应) (0 负责人)JavaScript (385 fork)github user discovery
help wanted

仓库指标

Star
 (4,667 star)
PR 合并指标
 (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.

贡献者指南