Skip to content

Commit

Permalink
fix: add missing filter options
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-rufi committed Nov 28, 2024
1 parent 3d94ef8 commit 4dbaa0c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/iota-graphql-e2e-tests/coverage/query/checkpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Query: `checkpoint`

```graphql
{
checkpoint {
checkpoint(id: null) {
digest
sequenceNumber
timestamp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Query: `checkpoints`

```graphql
{
checkpoints {
checkpoints(after: null, first: null, last: null, before: null) {
edges {
node {
digest
Expand Down
2 changes: 1 addition & 1 deletion crates/iota-graphql-e2e-tests/coverage/query/coins.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Query: `type`

```graphql
{
coins {
coins(first: null, last: null, after: null) {
edges {
node {
address
Expand Down
2 changes: 1 addition & 1 deletion crates/iota-graphql-e2e-tests/coverage/query/owner.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Query: `owner`

```graphql
{
owner(address: "0x1") {
owner(address: "0x1", rootVersion: null) {
address
objects {
edges {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Query: `transactionBlocks`

```graphql
{
transactionBlocks {
transactionBlocks(first: null, last: null, after: null, scanLimit: null) {
edges {
node {
digest
Expand Down

0 comments on commit 4dbaa0c

Please sign in to comment.