Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Allow for multiple queries inside of a GraphQL API request #792

Closed
Tracked by #794
deekerno opened this issue Apr 24, 2023 · 0 comments
Closed
Tracked by #794

Allow for multiple queries inside of a GraphQL API request #792

deekerno opened this issue Apr 24, 2023 · 0 comments
Labels

Comments

@deekerno
Copy link
Contributor

Currently, our GraphQL API does not allow for multiple queries inside of the body of a request. For example, the following request will not succeed despite being totally valid GraphQL functionality:

query {
    block {
        id
    }
}

query {
    tx {
        id
    }
}

We should amend the API response to allow for multiple query result sets.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants