├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── apps ├── sw_core │ ├── .gitignore │ ├── priv │ │ └── sw.schema │ └── src │ │ ├── Makefile │ │ ├── sw_core.app.src │ │ ├── sw_core_app.erl │ │ ├── sw_core_db.erl │ │ ├── sw_core_db.hrl │ │ ├── sw_core_enum.erl │ │ ├── sw_core_faction.erl │ │ ├── sw_core_film.erl │ │ ├── sw_core_id.erl │ │ ├── sw_core_mutation.erl │ │ ├── sw_core_object.erl │ │ ├── sw_core_paginate.erl │ │ ├── sw_core_person.erl │ │ ├── sw_core_planet.erl │ │ ├── sw_core_query.erl │ │ ├── sw_core_scalar.erl │ │ ├── sw_core_species.erl │ │ ├── sw_core_starship.erl │ │ ├── sw_core_sup.erl │ │ ├── sw_core_type.erl │ │ └── sw_core_vehicle.erl └── sw_web │ ├── .gitignore │ ├── priv │ └── site │ │ ├── assets │ │ ├── graphiql.css │ │ ├── graphiql.js │ │ └── graphiql.min.js │ │ └── index.html │ └── src │ ├── Makefile │ ├── sw_web.app.src │ ├── sw_web_app.erl │ ├── sw_web_graphql_handler.erl │ ├── sw_web_response.erl │ └── sw_web_sup.erl ├── config ├── sys.config └── vm.args ├── db └── FALLBACK.BUP ├── doc ├── Makefile ├── book.asciidoc ├── code.asciidoc ├── enum_resolution.asciidoc ├── errors.asciidoc ├── getting_started.asciidoc ├── graphiql.asciidoc ├── images │ └── graphiql.png ├── introduction.asciidoc ├── object_resolution.asciidoc ├── relay_modern.asciidoc ├── scalar_resolution.asciidoc ├── schema.asciidoc ├── security.asciidoc ├── system_tour.asciidoc ├── terms.asciidoc ├── transports.asciidoc ├── tricks.asciidoc ├── type_resolution.asciidoc └── why_graphql.asciidoc ├── fixtures ├── films.json ├── people.json ├── planets.json ├── species.json ├── starships.json ├── transport.json └── vehicles.json ├── images └── graphiql.png ├── index.html ├── rebar.config ├── rebar.lock ├── talks └── euc-2017 │ ├── Makefile │ ├── compiler.dot │ ├── graphql.pdf │ └── graphql.tex └── test ├── Makefile ├── sw_SUITE.erl └── sw_SUITE_data ├── advanced.query ├── advanced.result ├── bwing.query ├── bwing.result ├── enum.query ├── enum.result ├── faction.query ├── faction.result ├── films.json ├── first.query ├── first.result ├── mutation.input ├── mutation.query ├── mutation.result ├── people.json ├── planets.json ├── species.json ├── starships.json ├── transport.json └── vehicles.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /apps/sw_core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/.gitignore -------------------------------------------------------------------------------- /apps/sw_core/priv/sw.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/priv/sw.schema -------------------------------------------------------------------------------- /apps/sw_core/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/Makefile -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core.app.src -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_app.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_db.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_db.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_db.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_db.hrl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_enum.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_enum.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_faction.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_faction.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_film.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_film.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_id.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_id.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_mutation.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_mutation.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_object.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_object.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_paginate.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_paginate.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_person.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_person.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_planet.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_planet.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_query.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_query.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_scalar.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_scalar.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_species.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_species.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_starship.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_starship.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_sup.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_type.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_type.erl -------------------------------------------------------------------------------- /apps/sw_core/src/sw_core_vehicle.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_core/src/sw_core_vehicle.erl -------------------------------------------------------------------------------- /apps/sw_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/.gitignore -------------------------------------------------------------------------------- /apps/sw_web/priv/site/assets/graphiql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/priv/site/assets/graphiql.css -------------------------------------------------------------------------------- /apps/sw_web/priv/site/assets/graphiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/priv/site/assets/graphiql.js -------------------------------------------------------------------------------- /apps/sw_web/priv/site/assets/graphiql.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/priv/site/assets/graphiql.min.js -------------------------------------------------------------------------------- /apps/sw_web/priv/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/priv/site/index.html -------------------------------------------------------------------------------- /apps/sw_web/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/src/Makefile -------------------------------------------------------------------------------- /apps/sw_web/src/sw_web.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/src/sw_web.app.src -------------------------------------------------------------------------------- /apps/sw_web/src/sw_web_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/src/sw_web_app.erl -------------------------------------------------------------------------------- /apps/sw_web/src/sw_web_graphql_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/src/sw_web_graphql_handler.erl -------------------------------------------------------------------------------- /apps/sw_web/src/sw_web_response.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/src/sw_web_response.erl -------------------------------------------------------------------------------- /apps/sw_web/src/sw_web_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/apps/sw_web/src/sw_web_sup.erl -------------------------------------------------------------------------------- /config/sys.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/config/sys.config -------------------------------------------------------------------------------- /config/vm.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/config/vm.args -------------------------------------------------------------------------------- /db/FALLBACK.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/db/FALLBACK.BUP -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/book.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/book.asciidoc -------------------------------------------------------------------------------- /doc/code.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/code.asciidoc -------------------------------------------------------------------------------- /doc/enum_resolution.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/enum_resolution.asciidoc -------------------------------------------------------------------------------- /doc/errors.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/errors.asciidoc -------------------------------------------------------------------------------- /doc/getting_started.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/getting_started.asciidoc -------------------------------------------------------------------------------- /doc/graphiql.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/graphiql.asciidoc -------------------------------------------------------------------------------- /doc/images/graphiql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/images/graphiql.png -------------------------------------------------------------------------------- /doc/introduction.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/introduction.asciidoc -------------------------------------------------------------------------------- /doc/object_resolution.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/object_resolution.asciidoc -------------------------------------------------------------------------------- /doc/relay_modern.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/relay_modern.asciidoc -------------------------------------------------------------------------------- /doc/scalar_resolution.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/scalar_resolution.asciidoc -------------------------------------------------------------------------------- /doc/schema.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/schema.asciidoc -------------------------------------------------------------------------------- /doc/security.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/security.asciidoc -------------------------------------------------------------------------------- /doc/system_tour.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/system_tour.asciidoc -------------------------------------------------------------------------------- /doc/terms.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/terms.asciidoc -------------------------------------------------------------------------------- /doc/transports.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/transports.asciidoc -------------------------------------------------------------------------------- /doc/tricks.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/tricks.asciidoc -------------------------------------------------------------------------------- /doc/type_resolution.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/type_resolution.asciidoc -------------------------------------------------------------------------------- /doc/why_graphql.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/doc/why_graphql.asciidoc -------------------------------------------------------------------------------- /fixtures/films.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/films.json -------------------------------------------------------------------------------- /fixtures/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/people.json -------------------------------------------------------------------------------- /fixtures/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/planets.json -------------------------------------------------------------------------------- /fixtures/species.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/species.json -------------------------------------------------------------------------------- /fixtures/starships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/starships.json -------------------------------------------------------------------------------- /fixtures/transport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/transport.json -------------------------------------------------------------------------------- /fixtures/vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/fixtures/vehicles.json -------------------------------------------------------------------------------- /images/graphiql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/images/graphiql.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/index.html -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/rebar.lock -------------------------------------------------------------------------------- /talks/euc-2017/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/talks/euc-2017/Makefile -------------------------------------------------------------------------------- /talks/euc-2017/compiler.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/talks/euc-2017/compiler.dot -------------------------------------------------------------------------------- /talks/euc-2017/graphql.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/talks/euc-2017/graphql.pdf -------------------------------------------------------------------------------- /talks/euc-2017/graphql.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/talks/euc-2017/graphql.tex -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | $(MAKE) -C .. test 3 | -------------------------------------------------------------------------------- /test/sw_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE.erl -------------------------------------------------------------------------------- /test/sw_SUITE_data/advanced.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/advanced.query -------------------------------------------------------------------------------- /test/sw_SUITE_data/advanced.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/advanced.result -------------------------------------------------------------------------------- /test/sw_SUITE_data/bwing.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/bwing.query -------------------------------------------------------------------------------- /test/sw_SUITE_data/bwing.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/bwing.result -------------------------------------------------------------------------------- /test/sw_SUITE_data/enum.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/enum.query -------------------------------------------------------------------------------- /test/sw_SUITE_data/enum.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/enum.result -------------------------------------------------------------------------------- /test/sw_SUITE_data/faction.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/faction.query -------------------------------------------------------------------------------- /test/sw_SUITE_data/faction.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/faction.result -------------------------------------------------------------------------------- /test/sw_SUITE_data/films.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/films.json -------------------------------------------------------------------------------- /test/sw_SUITE_data/first.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/first.query -------------------------------------------------------------------------------- /test/sw_SUITE_data/first.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/first.result -------------------------------------------------------------------------------- /test/sw_SUITE_data/mutation.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/mutation.input -------------------------------------------------------------------------------- /test/sw_SUITE_data/mutation.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/mutation.query -------------------------------------------------------------------------------- /test/sw_SUITE_data/mutation.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/mutation.result -------------------------------------------------------------------------------- /test/sw_SUITE_data/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/people.json -------------------------------------------------------------------------------- /test/sw_SUITE_data/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/planets.json -------------------------------------------------------------------------------- /test/sw_SUITE_data/species.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/species.json -------------------------------------------------------------------------------- /test/sw_SUITE_data/starships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/starships.json -------------------------------------------------------------------------------- /test/sw_SUITE_data/transport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/transport.json -------------------------------------------------------------------------------- /test/sw_SUITE_data/vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouis/graphql-erlang-tutorial/HEAD/test/sw_SUITE_data/vehicles.json --------------------------------------------------------------------------------