Skip to content

Instantly share code, notes, and snippets.

@gmac
Created October 28, 2021 13:19

Revisions

  1. gmac created this gist Oct 28, 2021.
    36 changes: 36 additions & 0 deletions bramble_cache.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,36 @@
    {
    "MergedSchema": "directive @boundary on OBJECT | FIELD_DEFINITION\ntype Foo @boundary {\n\tid: ID!\n\tgqlgen: Boolean!\n\tnodejs: Boolean!\n}\ntype Query {\n\trandomFoo: Foo!\n}\n",
    "Services": [
    {
    "Name": "gqlgen",
    "ServiceURL": "https://localhost:3000",
    },
    {
    "Name": "nodejs",
    "ServiceURL": "https://localhost:3001",
    }
    ],
    "Locations": {
    "Foo.gqlgen": "http://localhost:3000/query",
    "Foo.nodejs": "http://localhost:3001/query",
    "Query.randomFoo": "http://localhost:3000/query"
    },
    "IsBoundary": {
    "Foo": true,
    "Query": false
    },
    "BoundaryQueries": {
    "http://localhost:3001/query": {
    "Foo": {
    "Field": "foo",
    "Array": false
    }
    },
    "http://localhost:3000/query": {
    "Foo": {
    "Field": "foo",
    "Array": false
    }
    }
    }
    }