Skip to content

Commit

Permalink
Merge branch 'master' into deekerno/integrate-async-graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
deekerno committed May 16, 2023
2 parents 899c084 + f146148 commit 8239b11
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ type Account {
}
```

### GraphQL Functionality

While we do our best to maintain compliance with the GraphQL specification and parity with other implementations, there are a few things that are under development or will not be implemented. You can find more information in [the GraphQL chapter of the book](https://fuellabs.github.io/fuel-indexer/master/reference-guide/components/graphql/index.html).

## Modules

Within the context of the Fuel indexer, WebAssembly (WASM) modules are binaries that are compiled to a `wasm32-unknown-unknown` target, which can then be deployed to a running indexer service.
Expand Down
30 changes: 29 additions & 1 deletion docs/src/reference-guide/components/graphql/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,32 @@ The Fuel indexer uses GraphQL to in order to allow users to query for indexed da
- [Schema](./schema.md)
- [Directives](./directives.md)
- [GraphQL API Server](./api-server.md)
- [Queries](./queries.md)
- [Queries](./queries/index.md)

## Supported Functionality

While we do our best to maintain compliance with the GraphQL specification and parity with other implementations, there are a few things that are under development or will not be implemented. Here's a table describing our GraphQL functionality:

```text
✅ -- implemented
🚧 -- planned or in development
⛔ -- will not implement
```

| Functionality | Status | Notes |
|------|----------|-------|
| Arguments || [read the Search and Filtering section](./queries/search-filtering.md) |
| Aliases || |
| Fragments || inline fragments are currently not supported |
| Introspection || |
| GraphQL Playground || [read the Playground section](./playground.md) |
| Pagination || [read the Pagination section](./queries/pagination.md) |
| Directives | 🚧 | [read the Directives section](./directives.md) |
| List Types | 🚧 | |
| Union Types | 🚧 | |
| Federation | 🚧 | |
| Variables || |
| Mutations || |
| Enums || |
| Interfaces || |
| Input Types|| |

0 comments on commit 8239b11

Please sign in to comment.