├── .gitignore ├── .meshrc.yml ├── example-query.graphql ├── package.json └── src └── openbrewery ├── breweriesInputSample.json └── breweriesSample.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | yarn.lock 3 | .mesh 4 | -------------------------------------------------------------------------------- /.meshrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-mesh-workshop/HEAD/.meshrc.yml -------------------------------------------------------------------------------- /example-query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-mesh-workshop/HEAD/example-query.graphql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-mesh-workshop/HEAD/package.json -------------------------------------------------------------------------------- /src/openbrewery/breweriesInputSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-mesh-workshop/HEAD/src/openbrewery/breweriesInputSample.json -------------------------------------------------------------------------------- /src/openbrewery/breweriesSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardatan/graphql-mesh-workshop/HEAD/src/openbrewery/breweriesSample.json --------------------------------------------------------------------------------