Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop committed Jul 25, 2024
1 parent 8500b73 commit 3139e27
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions tests/execution/related-fields-recursive.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
```graphql @config
scalar DateTime

schema
@server(
port: 8000
hostname: "0.0.0.0"
)
@upstream( baseURL: "http://localhost:8083/graphql")
{
query: Query
schema @server(port: 8000, hostname: "0.0.0.0") @upstream(baseURL: "http://localhost:8083/graphql") {
query: Query
}

type Query {
queryNodeA: [NodeA] @graphQL (name:"queryNodeA" batch: false)

queryNodeA: [NodeA] @graphQL(name: "queryNodeA", batch: false)
}

type NodeA {
name : String
nodeB : NodeB
name: String
nodeB: NodeB
}

type NodeB {
name : String
nodeA : NodeA
name: String
nodeA: NodeA
}
```

0 comments on commit 3139e27

Please sign in to comment.