├── .gitignore ├── Makefile ├── README.md ├── examples ├── albums.js ├── core.js ├── schema.gql └── starWarsData.js ├── package.json ├── project.clj ├── resources └── schema.gql ├── src └── graphql-tlc │ ├── common.cljs │ ├── consumer.cljs │ └── schema.cljs └── test └── graphql-tlc ├── core.cljs └── runner.cljs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/README.md -------------------------------------------------------------------------------- /examples/albums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/examples/albums.js -------------------------------------------------------------------------------- /examples/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/examples/core.js -------------------------------------------------------------------------------- /examples/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/examples/schema.gql -------------------------------------------------------------------------------- /examples/starWarsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/examples/starWarsData.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/package.json -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/project.clj -------------------------------------------------------------------------------- /resources/schema.gql: -------------------------------------------------------------------------------- 1 | 2 | type Color { 3 | id: ID! 4 | name: String 5 | } 6 | -------------------------------------------------------------------------------- /src/graphql-tlc/common.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/src/graphql-tlc/common.cljs -------------------------------------------------------------------------------- /src/graphql-tlc/consumer.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/src/graphql-tlc/consumer.cljs -------------------------------------------------------------------------------- /src/graphql-tlc/schema.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/src/graphql-tlc/schema.cljs -------------------------------------------------------------------------------- /test/graphql-tlc/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/test/graphql-tlc/core.cljs -------------------------------------------------------------------------------- /test/graphql-tlc/runner.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanatan/graphql-type-lang-compiler/HEAD/test/graphql-tlc/runner.cljs --------------------------------------------------------------------------------