├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc ├── .github ├── pull_request_template.md └── workflows │ ├── close-jira-ticket.yml │ ├── create-jira-ticket-from-issue.yml │ ├── create-jira-ticket-from-pull-request.yml │ └── semantic-release.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── concourse ├── pipeline.yml ├── scripts │ ├── body_gtm.dat │ ├── head_gtm.dat │ ├── publish.sh │ └── publish_docs.sh └── tasks │ ├── browserify-and-npm-publish.yml │ ├── integration-tests.yml │ ├── integration.yml │ └── publish-docs.yml ├── index.d.ts ├── index.js ├── jsconfig.json ├── jsdoc.json ├── overview.md ├── package.json ├── src ├── Client.js ├── Expr.js ├── PageHelper.js ├── RequestResult.js ├── _http │ ├── errors.js │ ├── fetchAdapter.js │ ├── http2Adapter.js │ └── index.js ├── _json.js ├── _util.js ├── clientLogger.js ├── errors.js ├── query.js ├── stream.js ├── types │ ├── Client.d.ts │ ├── Expr.d.ts │ ├── PageHelper.d.ts │ ├── RequestResult.d.ts │ ├── Stream.d.ts │ ├── errors.d.ts │ ├── query.d.ts │ └── values.d.ts └── values.js ├── test ├── _json.test.js ├── afterComplete.js ├── auth.test.js ├── client.test.js ├── clientLogger.test.js ├── config.js ├── page.test.js ├── query.test.js ├── stream.test.js ├── util.js └── values.test.js ├── tools ├── loadTest.js └── printReleaseNotes.js ├── tsconfig.json └── webpack.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.d.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/close-jira-ticket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.github/workflows/close-jira-ticket.yml -------------------------------------------------------------------------------- /.github/workflows/create-jira-ticket-from-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.github/workflows/create-jira-ticket-from-issue.yml -------------------------------------------------------------------------------- /.github/workflows/create-jira-ticket-from-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.github/workflows/create-jira-ticket-from-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.github/workflows/semantic-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/README.md -------------------------------------------------------------------------------- /concourse/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/pipeline.yml -------------------------------------------------------------------------------- /concourse/scripts/body_gtm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/scripts/body_gtm.dat -------------------------------------------------------------------------------- /concourse/scripts/head_gtm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/scripts/head_gtm.dat -------------------------------------------------------------------------------- /concourse/scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/scripts/publish.sh -------------------------------------------------------------------------------- /concourse/scripts/publish_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/scripts/publish_docs.sh -------------------------------------------------------------------------------- /concourse/tasks/browserify-and-npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/tasks/browserify-and-npm-publish.yml -------------------------------------------------------------------------------- /concourse/tasks/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/tasks/integration-tests.yml -------------------------------------------------------------------------------- /concourse/tasks/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/tasks/integration.yml -------------------------------------------------------------------------------- /concourse/tasks/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/concourse/tasks/publish-docs.yml -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/jsconfig.json -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/jsdoc.json -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/overview.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/package.json -------------------------------------------------------------------------------- /src/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/Client.js -------------------------------------------------------------------------------- /src/Expr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/Expr.js -------------------------------------------------------------------------------- /src/PageHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/PageHelper.js -------------------------------------------------------------------------------- /src/RequestResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/RequestResult.js -------------------------------------------------------------------------------- /src/_http/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/_http/errors.js -------------------------------------------------------------------------------- /src/_http/fetchAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/_http/fetchAdapter.js -------------------------------------------------------------------------------- /src/_http/http2Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/_http/http2Adapter.js -------------------------------------------------------------------------------- /src/_http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/_http/index.js -------------------------------------------------------------------------------- /src/_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/_json.js -------------------------------------------------------------------------------- /src/_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/_util.js -------------------------------------------------------------------------------- /src/clientLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/clientLogger.js -------------------------------------------------------------------------------- /src/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/errors.js -------------------------------------------------------------------------------- /src/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/query.js -------------------------------------------------------------------------------- /src/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/stream.js -------------------------------------------------------------------------------- /src/types/Client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/Client.d.ts -------------------------------------------------------------------------------- /src/types/Expr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/Expr.d.ts -------------------------------------------------------------------------------- /src/types/PageHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/PageHelper.d.ts -------------------------------------------------------------------------------- /src/types/RequestResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/RequestResult.d.ts -------------------------------------------------------------------------------- /src/types/Stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/Stream.d.ts -------------------------------------------------------------------------------- /src/types/errors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/errors.d.ts -------------------------------------------------------------------------------- /src/types/query.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/query.d.ts -------------------------------------------------------------------------------- /src/types/values.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/types/values.d.ts -------------------------------------------------------------------------------- /src/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/src/values.js -------------------------------------------------------------------------------- /test/_json.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/_json.test.js -------------------------------------------------------------------------------- /test/afterComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/afterComplete.js -------------------------------------------------------------------------------- /test/auth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/auth.test.js -------------------------------------------------------------------------------- /test/client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/client.test.js -------------------------------------------------------------------------------- /test/clientLogger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/clientLogger.test.js -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/config.js -------------------------------------------------------------------------------- /test/page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/page.test.js -------------------------------------------------------------------------------- /test/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/query.test.js -------------------------------------------------------------------------------- /test/stream.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/stream.test.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/util.js -------------------------------------------------------------------------------- /test/values.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/test/values.test.js -------------------------------------------------------------------------------- /tools/loadTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/tools/loadTest.js -------------------------------------------------------------------------------- /tools/printReleaseNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/tools/printReleaseNotes.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fauna/faunadb-js/HEAD/webpack.config.js --------------------------------------------------------------------------------