├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── schema.graphql ├── src ├── client.ts ├── errors.ts ├── graphql-env.d.ts ├── graphql.ts └── index.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/package.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/graphql-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/src/graphql-env.d.ts -------------------------------------------------------------------------------- /src/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/src/graphql.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnivore-app/omnivore-api/HEAD/tsconfig.json --------------------------------------------------------------------------------