├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── .graphqlconfig ├── .husky └── pre-commit ├── .mocharc.json ├── .npmignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── SECURITY.md ├── arangodb └── package.json ├── core-exports.ts ├── core └── package.json ├── cruddl-bench.js ├── cruddl-dev.js ├── docs ├── api.md ├── architecture.md ├── billing.md ├── flexSearch.md ├── i18n.md ├── modelling.md └── time-to-live.md ├── emit-cruddl-version.js ├── example ├── .gitignore ├── index.ts ├── package.json └── readme.md ├── index.ts ├── inmemory └── package.json ├── knip.json ├── package.json ├── spec ├── authorization │ ├── move-errors-to-output-nodes.spec.ts │ ├── permission-descriptor.spec.ts │ └── permission-profile.spec.ts ├── database │ ├── arangodb │ │ ├── aql-generator.spec.ts │ │ ├── aql.spec.ts │ │ ├── arangodb-adapter.spec.ts │ │ ├── arangodb-test-utils.ts │ │ ├── retry.spec.ts │ │ ├── schema-migration │ │ │ └── arango-search-helper.spec.ts │ │ └── ttl.spec.ts │ └── like-helper.spec.ts ├── dev │ ├── fast-server.ts │ ├── model │ │ ├── billing.json │ │ ├── i18n.yml │ │ ├── namespace │ │ │ └── test.graphqls │ │ ├── permission-profiles.json │ │ ├── simple.graphqls │ │ └── ttl.json │ ├── server.ts │ └── start.ts ├── graphql │ └── query-distiller.spec.ts ├── helpers │ ├── generate-random-string.ts │ ├── log4js-logger-provider.ts │ └── warn-and-error-logger-provider.ts ├── init.mocha.ts ├── meta-schema │ └── meta-schema.spec.ts ├── model │ ├── change-set │ │ └── apply-change-set.spec.ts │ ├── compatibility-check │ │ ├── check-business-object.spec.ts │ │ ├── check-calc-mutations.spec.ts │ │ ├── check-collect-field.spec.ts │ │ ├── check-default-value.spec.ts │ │ ├── check-enums.spec.ts │ │ ├── check-field-type.spec.ts │ │ ├── check-flex-search-on-field.spec.ts │ │ ├── check-flex-search-on-type.spec.ts │ │ ├── check-indices.spec.ts │ │ ├── check-key-field.spec.ts │ │ ├── check-model.spec.ts │ │ ├── check-object-types.spec.ts │ │ ├── check-reference.spec.ts │ │ ├── check-relation.spec.ts │ │ ├── check-root-and-parent-directives.spec.ts │ │ ├── check-ttl.spec.ts │ │ ├── describe-module-specification.spec.ts │ │ └── utils.ts │ ├── create-model.spec.ts │ ├── implementation │ │ ├── billing-validation.spec.ts │ │ ├── collect-path.spec.ts │ │ ├── effective-module-specification.spec.ts │ │ ├── entity-extenion-type.spec.ts │ │ ├── field.spec.ts │ │ ├── flex-search-validation.spec.ts │ │ ├── i18n-fields.spec.ts │ │ ├── i18n-types.spec.ts │ │ ├── i18n-validation.spec.ts │ │ ├── indices.spec.ts │ │ ├── model.spec.ts │ │ ├── namespace.spec.ts │ │ ├── object-type.spec.ts │ │ ├── relation.spec.ts │ │ ├── root-entity-type.spec.ts │ │ ├── type.spec.ts │ │ └── validation-utils.ts │ ├── model-spec.helper.ts │ └── validation │ │ └── suppress │ │ └── quick-fix.spec.ts ├── performance │ ├── associations.perf.ts │ ├── count.perf.ts │ ├── crud.perf.ts │ ├── filter.perf.ts │ ├── index.ts │ ├── pagination.perf.ts │ ├── query-pipeline.perf.ts │ ├── references.perf.ts │ └── support │ │ ├── async-bench.ts │ │ ├── helpers.ts │ │ └── runner.ts ├── project │ ├── project.spec.ts │ └── select-modules-in-sources.spec.ts ├── query-tree │ └── utils │ │ └── simplify-booleans.spec.ts ├── regression │ ├── access-groups │ │ ├── model │ │ │ ├── file.graphqls │ │ │ └── permission-profiles.json │ │ ├── test-data.json │ │ └── tests │ │ │ ├── accounting │ │ │ ├── aql │ │ │ │ └── allFiles.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── dynamic-access-groups │ │ │ ├── aql │ │ │ │ ├── correctAccessGroups.aql │ │ │ │ ├── list.aql │ │ │ │ └── wrongAccessGroup.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search │ │ │ ├── aql │ │ │ │ └── flexAuth.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── logistics-reader-bulk │ │ │ ├── aql │ │ │ │ ├── deletePublic.aql │ │ │ │ ├── deleteReadRestricted.aql │ │ │ │ ├── deleteWriteRestricted.aql │ │ │ │ ├── updatePublic.aql │ │ │ │ ├── updateReadRestricted.aql │ │ │ │ ├── updateReadRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutReadPermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateWriteRestricted.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── logistics-reader-many │ │ │ ├── aql │ │ │ │ ├── createWithAccessGroupWithWritePermissions.aql │ │ │ │ ├── createWithAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── deletePublic.aql │ │ │ │ ├── deleteReadRestricted.aql │ │ │ │ ├── deleteWriteRestricted.aql │ │ │ │ ├── q.aql │ │ │ │ ├── updatePublic.aql │ │ │ │ ├── updateReadRestricted.aql │ │ │ │ ├── updateReadRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutReadPermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateWriteRestricted.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── logistics-reader │ │ │ ├── aql │ │ │ │ ├── createWithAccessGroupWithWritePermissions.aql │ │ │ │ ├── createWithAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── deletePublic.aql │ │ │ │ ├── deleteReadRestricted.aql │ │ │ │ ├── deleteWriteRestricted.aql │ │ │ │ ├── q.aql │ │ │ │ ├── updatePublic.aql │ │ │ │ ├── updateReadRestricted.aql │ │ │ │ ├── updateReadRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutReadPermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateWriteRestricted.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── logistics │ │ │ ├── aql │ │ │ ├── createManyWithAccessGroupWithPermissions.aql │ │ │ ├── createManyWithAccessGroupWithoutPermissions.aql │ │ │ ├── createWithAccessGroupWithPermissions.aql │ │ │ ├── createWithAccessGroupWithoutPermissions.aql │ │ │ ├── q.aql │ │ │ ├── updateAllToAccessGroupWithPermissions.aql │ │ │ ├── updateManyToAccessGroupWithPermissions.aql │ │ │ └── updateToAccessGroupWithPermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── access-restrictions │ │ ├── model │ │ │ ├── file.graphqls │ │ │ └── permission-profiles.json │ │ ├── test-data.json │ │ └── tests │ │ │ ├── accounting │ │ │ ├── aql │ │ │ │ └── allFiles.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── customer-flex │ │ │ ├── aql │ │ │ │ └── flexAuth.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── customer │ │ │ ├── aql │ │ │ │ ├── createWithValueWithWritePermissions.aql │ │ │ │ ├── createWithValueWithoutWritePermissions.aql │ │ │ │ ├── deleteOwn.aql │ │ │ │ ├── q.aql │ │ │ │ ├── updateOwn.aql │ │ │ │ ├── updateReadRestrictedToValueWithoutWritePermissions.aql │ │ │ │ ├── updateToValueWithoutReadPermissions.aql │ │ │ │ ├── updateToValueWithoutWritePermissions.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── dynamic-access-groups │ │ │ ├── aql │ │ │ │ ├── correctAccessGroups.aql │ │ │ │ ├── list.aql │ │ │ │ └── wrongAccessGroup.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search │ │ │ ├── aql │ │ │ │ └── flexAuth.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── logistics-reader-bulk │ │ │ ├── aql │ │ │ │ ├── deletePublic.aql │ │ │ │ ├── deleteReadRestricted.aql │ │ │ │ ├── deleteWriteRestricted.aql │ │ │ │ ├── updatePublic.aql │ │ │ │ ├── updateReadRestricted.aql │ │ │ │ ├── updateReadRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutReadPermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateWriteRestricted.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── logistics-reader-many │ │ │ ├── aql │ │ │ │ ├── createWithAccessGroupWithWritePermissions.aql │ │ │ │ ├── createWithAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── deletePublic.aql │ │ │ │ ├── deleteReadRestricted.aql │ │ │ │ ├── deleteWriteRestricted.aql │ │ │ │ ├── q.aql │ │ │ │ ├── updatePublic.aql │ │ │ │ ├── updateReadRestricted.aql │ │ │ │ ├── updateReadRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutReadPermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateWriteRestricted.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── logistics-reader │ │ │ ├── aql │ │ │ │ ├── createWithAccessGroupWithWritePermissions.aql │ │ │ │ ├── createWithAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── deletePublic.aql │ │ │ │ ├── deleteReadRestricted.aql │ │ │ │ ├── deleteWriteRestricted.aql │ │ │ │ ├── q.aql │ │ │ │ ├── updatePublic.aql │ │ │ │ ├── updateReadRestricted.aql │ │ │ │ ├── updateReadRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutReadPermissions.aql │ │ │ │ ├── updateToAccessGroupWithoutWritePermissions.aql │ │ │ │ ├── updateWriteRestricted.aql │ │ │ │ └── updateWriteRestrictedToAccessGroupWithoutWritePermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── logistics │ │ │ ├── aql │ │ │ ├── createManyWithAccessGroupWithPermissions.aql │ │ │ ├── createManyWithAccessGroupWithoutPermissions.aql │ │ │ ├── createWithAccessGroupWithPermissions.aql │ │ │ ├── createWithAccessGroupWithoutPermissions.aql │ │ │ ├── q.aql │ │ │ ├── updateAllToAccessGroupWithPermissions.aql │ │ │ ├── updateManyToAccessGroupWithPermissions.aql │ │ │ └── updateToAccessGroupWithPermissions.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── collect │ │ ├── default-context.json │ │ ├── model │ │ │ ├── model.graphqls │ │ │ └── permission-profiles.json │ │ ├── test-data.json │ │ └── tests │ │ │ ├── collect-edge-count-access-group │ │ │ ├── aql │ │ │ │ ├── count.aql │ │ │ │ └── createEdges.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── collect-edge-count │ │ │ ├── aql │ │ │ │ ├── countAfter.aql │ │ │ │ ├── countBefore.aql │ │ │ │ ├── createEdges.aql │ │ │ │ └── deleteDelivery.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── distinct-aggregation │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ └── distinct.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── field-aggregation │ │ │ ├── aql │ │ │ │ └── fields.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── field-traversal │ │ │ ├── aql │ │ │ │ ├── fieldsToN.aql │ │ │ │ ├── fieldsToN_filter.aql │ │ │ │ ├── fieldsToN_filter_order.aql │ │ │ │ ├── fieldsToN_filter_order_pagination.aql │ │ │ │ ├── fieldsToN_filter_pagination.aql │ │ │ │ ├── fieldsToN_order.aql │ │ │ │ ├── fieldsToN_order_pagination.aql │ │ │ │ └── fieldsToN_pagination.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── input-type-compat │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ └── update.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── nested-field-traversal │ │ │ ├── aql │ │ │ │ ├── childEntitiesInChildEntities.aql │ │ │ │ ├── childEntitiesInCollect.aql │ │ │ │ ├── collectInChildEntities.aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── innerWithOrder.aql │ │ │ │ ├── outerWithOrder.aql │ │ │ │ ├── outerWithRelation_innerWithOrder.aql │ │ │ │ └── simple.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── recursive-relation-traversal-access-group │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── direct0to1.aql │ │ │ │ ├── direct0to2.aql │ │ │ │ ├── direct1to1.aql │ │ │ │ ├── direct1to2.aql │ │ │ │ ├── direct2to2.aql │ │ │ │ ├── direct3to3.aql │ │ │ │ └── indirect.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── recursive-relation-traversal │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── direct0to1.aql │ │ │ │ ├── direct0to2.aql │ │ │ │ ├── direct1to1.aql │ │ │ │ ├── direct1to2.aql │ │ │ │ ├── direct2to2.aql │ │ │ │ ├── direct3to3.aql │ │ │ │ └── indirect.aql │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── relation-and-field-aggregation │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ └── fields.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── relation-and-field-traversal │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── relationTo1_fieldsToN.aql │ │ │ │ ├── relationTo1_fieldsToN_filter.aql │ │ │ │ ├── relationTo1_fieldsToN_filter_order.aql │ │ │ │ ├── relationTo1_fieldsToN_filter_order_pagination.aql │ │ │ │ ├── relationTo1_fieldsToN_filter_pagination.aql │ │ │ │ ├── relationTo1_fieldsToN_order.aql │ │ │ │ ├── relationTo1_fieldsToN_order_pagination.aql │ │ │ │ ├── relationTo1_fieldsToN_pagination.aql │ │ │ │ ├── relationToN_fieldsToN.aql │ │ │ │ ├── relationToN_fieldsToN_filter.aql │ │ │ │ ├── relationToN_fieldsToN_filter_order.aql │ │ │ │ ├── relationToN_fieldsToN_filter_order_pagination.aql │ │ │ │ ├── relationToN_fieldsToN_filter_pagination.aql │ │ │ │ ├── relationToN_fieldsToN_order.aql │ │ │ │ ├── relationToN_fieldsToN_order_pagination.aql │ │ │ │ └── relationToN_fieldsToN_pagination.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── relation-traversal-access-field │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── queryAll.aql │ │ │ │ └── queryRestricted.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── relation-traversal-access-group │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── to_1to1_ntoN.aql │ │ │ │ ├── to_1toN_1ToN.aql │ │ │ │ ├── to_1toN_1to1.aql │ │ │ │ └── to_1toN_nToN.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── relation-traversal-multi-path │ │ │ ├── aql │ │ │ │ ├── count.aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── distinct.aql │ │ │ │ └── distinctPitfall.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── relation-traversal-with-pagination │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── to_1to1_ntoN.aql │ │ │ │ ├── to_1toN_1ToN.aql │ │ │ │ ├── to_1toN_1to1.aql │ │ │ │ └── to_1toN_nToN.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── relation-traversal │ │ │ ├── aql │ │ │ ├── createEdges.aql │ │ │ ├── to_1to1_ntoN.aql │ │ │ ├── to_1toN_1ToN.aql │ │ │ ├── to_1toN_1to1.aql │ │ │ └── to_1toN_nToN.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── drop-test-db.ts │ ├── init-test-data-context.ts │ ├── initialization.ts │ ├── keywords │ │ ├── default-context.json │ │ ├── model │ │ │ └── model.graphqls │ │ └── tests │ │ │ └── escaped-keywords │ │ │ ├── aql │ │ │ ├── m.aql │ │ │ └── q.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── list-limits │ │ ├── model │ │ │ ├── hero.graphqls │ │ │ └── permission-profiles.json │ │ ├── test-data.json │ │ └── tests │ │ │ ├── explicit-limit-delete-all-first-exceeds-limit │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ExplicitDeleteAllFirstExceedsLimit.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── explicit-limit-delete-all-first │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ExplicitLimitDeleteAllFirst.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── explicit-limit-query │ │ │ ├── aql │ │ │ │ └── ExplicitLimitQuery.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── explicit-limit-update-all-first-exceeds-limit │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ExplicitUpdateAllFirstExceedsLimit.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── explicit-limit-update-all-first │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ExplicitUpdateAllFirst.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── implicit-limit-delete-all-first │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ImplicitLimitDeleteAllFirst.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── implicit-limit-delete-all │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ImplicitDeleteAll.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── implicit-limit-query │ │ │ ├── aql │ │ │ │ └── ImplicitLimitQuery.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── implicit-limit-update-all-first │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ImplicitLimitUpdateAllFirst.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── implicit-limit-update-all │ │ │ ├── aql │ │ │ │ ├── DataCheck.aql │ │ │ │ └── ImplicitUpdateAll.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── no-limits-mutation │ │ │ ├── aql │ │ │ │ └── NoLimitsMutation.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── no-limits-query │ │ │ ├── aql │ │ │ └── NoLimitsQuery.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── logistics │ │ ├── default-context.json │ │ ├── model │ │ │ ├── address.graphqls │ │ │ ├── billing.graphqls │ │ │ ├── billing.json │ │ │ ├── country.graphqls │ │ │ ├── dangerous-goods.graphqls │ │ │ ├── delivery.graphqls │ │ │ ├── handling-unit.graphqls │ │ │ ├── number-range.graphqls │ │ │ ├── permission-profiles.json │ │ │ ├── secret.graphqls │ │ │ └── translation.graphqls │ │ ├── test-data.json │ │ └── tests │ │ │ ├── add-child-entity │ │ │ ├── aql │ │ │ │ ├── add.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── add-root-entity │ │ │ ├── aql │ │ │ │ ├── add.aql │ │ │ │ └── query.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── aliases │ │ │ ├── aql │ │ │ │ └── aliases.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── billing │ │ │ ├── aql │ │ │ │ ├── billingEntity_existing.aql │ │ │ │ └── createDelivery.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── count │ │ │ ├── aql │ │ │ │ └── count.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create-many │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create-with-to-many-relation │ │ │ ├── aql │ │ │ │ ├── check.aql │ │ │ │ └── create.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create-with-to-one-relation │ │ │ ├── aql │ │ │ │ ├── check.aql │ │ │ │ └── create.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── date-time-invalid │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── date-time │ │ │ ├── aql │ │ │ │ ├── query.aql │ │ │ │ └── update.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── default-value │ │ │ ├── aql │ │ │ │ ├── checkCreatedByInit.aql │ │ │ │ ├── checkFiltersByInit.aql │ │ │ │ └── createNewWithSomeOtherValuesOverwritten.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── delete-all-related │ │ │ ├── aql │ │ │ │ ├── addRelations.aql │ │ │ │ ├── deleteByDelivery.aql │ │ │ │ └── deliveries.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── delete-all │ │ │ ├── aql │ │ │ │ ├── all.aql │ │ │ │ ├── all_no_relations.aql │ │ │ │ └── onlyFirst.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── delete-many │ │ │ ├── aql │ │ │ │ └── onlyFirst.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── deprecations │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── descriptions │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── entity-extensions │ │ │ ├── aql │ │ │ │ ├── afterUpdate.aql │ │ │ │ ├── before.aql │ │ │ │ ├── createWithNull.aql │ │ │ │ ├── createWithValue.aql │ │ │ │ ├── update.aql │ │ │ │ ├── updateNested.aql │ │ │ │ └── updateWithNull.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── enum-key-fields │ │ │ ├── aql │ │ │ │ └── EnumKey.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── field-permission-denied │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── filter.aql │ │ │ │ ├── prepare.aql │ │ │ │ ├── select.aql │ │ │ │ ├── selectMeta.aql │ │ │ │ ├── sort.aql │ │ │ │ └── update.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── field-permission-granted │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── filter.aql │ │ │ │ ├── prepare.aql │ │ │ │ ├── select.aql │ │ │ │ ├── selectMeta.aql │ │ │ │ ├── sort.aql │ │ │ │ └── update.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-by-relation │ │ │ ├── aql │ │ │ │ ├── addRelation1.aql │ │ │ │ ├── addRelation2.aql │ │ │ │ └── q.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-empty-scalar-list │ │ │ ├── aql │ │ │ │ ├── empty.aql │ │ │ │ ├── init.aql │ │ │ │ ├── none.aql │ │ │ │ ├── not_empty.aql │ │ │ │ └── some.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-empty │ │ │ ├── aql │ │ │ │ ├── empty.aql │ │ │ │ ├── empty_one_list.aql │ │ │ │ ├── none.aql │ │ │ │ ├── not_empty.aql │ │ │ │ └── some.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-null │ │ │ ├── aql │ │ │ │ ├── filterInEqualsNull.aql │ │ │ │ ├── filterInNull.aql │ │ │ │ ├── filterNotInNull.aql │ │ │ │ ├── filterNotNullScalar.aql │ │ │ │ ├── filterNullEntityExtension.aql │ │ │ │ ├── filterNullReference.aql │ │ │ │ ├── filterNullRelation.aql │ │ │ │ ├── filterNullScalar.aql │ │ │ │ └── filterNullValueObject.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-quantifiers │ │ │ ├── aql │ │ │ │ ├── empty_list.aql │ │ │ │ ├── every.aql │ │ │ │ ├── every_equals.aql │ │ │ │ ├── none.aql │ │ │ │ ├── null_list.aql │ │ │ │ ├── set_empty_list.aql │ │ │ │ ├── some.aql │ │ │ │ ├── some_equals.aql │ │ │ │ ├── some_like_complicated.aql │ │ │ │ ├── some_like_simple.aql │ │ │ │ └── some_multiple.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-stringmap-in-child-entities │ │ │ ├── aql │ │ │ │ ├── filterI18nString.aql │ │ │ │ ├── filterI18nStringWithCorrectLanguage.aql │ │ │ │ ├── filterI18nStringWithIncorrectLanguage.aql │ │ │ │ └── filterI18nStringWithNullValueForI18nString.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-stringmap-in-root-entities │ │ │ ├── aql │ │ │ │ ├── filterI18nString.aql │ │ │ │ ├── filterI18nStringWithCorrectLanguage.aql │ │ │ │ └── filterI18nStringWithIncorrectLanguage.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search-filter-null │ │ │ ├── aql │ │ │ │ ├── everythingIsGreaterThanNull.aql │ │ │ │ ├── nothingIsLessThanNull.aql │ │ │ │ ├── stringEqualsNull.aql │ │ │ │ ├── stringGreaterThanNull.aql │ │ │ │ ├── stringGreaterThanOrEqualNull.aql │ │ │ │ ├── stringInNull.aql │ │ │ │ ├── stringLessThanNull.aql │ │ │ │ ├── stringLessThanOrEqualNull.aql │ │ │ │ ├── stringNotEqualsNull.aql │ │ │ │ ├── stringNotInNull.aql │ │ │ │ ├── stringNotStartsWithNull.aql │ │ │ │ └── stringStartsWithNull.aql │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search-i18nstring │ │ │ ├── aql │ │ │ │ ├── fulltextInList.aql │ │ │ │ └── identityInList.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search-in-memory │ │ │ ├── aql │ │ │ │ ├── empty.aql │ │ │ │ ├── empty_one_list.aql │ │ │ │ ├── entityExtension.aql │ │ │ │ ├── eq_does_not_include_null.aql │ │ │ │ ├── equals.aql │ │ │ │ ├── equals_enum.aql │ │ │ │ ├── equals_id.aql │ │ │ │ ├── equals_number.aql │ │ │ │ ├── gte_string.aql │ │ │ │ ├── in.aql │ │ │ │ ├── in_null.aql │ │ │ │ ├── legacy_filter_above_max.aql │ │ │ │ ├── legacy_filter_below_max.aql │ │ │ │ ├── lt_includes_null.aql │ │ │ │ ├── lte_includes_null.aql │ │ │ │ ├── lte_string.aql │ │ │ │ ├── meta_above_max.aql │ │ │ │ ├── meta_below_max.aql │ │ │ │ ├── not_in_null.aql │ │ │ │ ├── null_starts_with.aql │ │ │ │ ├── offset_date_time.aql │ │ │ │ ├── order_above_max.aql │ │ │ │ ├── order_below_max.aql │ │ │ │ ├── post_and_legacy_filter_throws.aql │ │ │ │ ├── post_filter_above_max.aql │ │ │ │ ├── post_filter_and_first.aql │ │ │ │ ├── post_filter_below_max.aql │ │ │ │ ├── recursion_error.aql │ │ │ │ ├── recursion_successfull.aql │ │ │ │ ├── starts_with.aql │ │ │ │ ├── string_aggregation.aql │ │ │ │ └── valueObject.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search-primary-sort │ │ │ ├── aql │ │ │ │ ├── order_above_max.aql │ │ │ │ └── order_above_max_primary_sort.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flex-search │ │ │ ├── aql │ │ │ │ ├── caseInsensitive_equals.aql │ │ │ │ ├── caseInsensitive_gte.aql │ │ │ │ ├── caseInsensitive_in.aql │ │ │ │ ├── caseInsensitive_starts_with.aql │ │ │ │ ├── containsAllPrefixes.aql │ │ │ │ ├── containsAllPrefixesWithEmptyFilter.aql │ │ │ │ ├── containsAllWords.aql │ │ │ │ ├── containsAnyPrefix.aql │ │ │ │ ├── containsAnyWord.aql │ │ │ │ ├── containsPhrase.aql │ │ │ │ ├── emptyExpression.aql │ │ │ │ ├── equals_null.aql │ │ │ │ ├── everythingIsGreaterThanNullInAggregation.aql │ │ │ │ ├── expression.aql │ │ │ │ ├── expressionFulltext.aql │ │ │ │ ├── expressionRequiresFlagOnChildObjects.aql │ │ │ │ ├── expressionWithMultipleWords.aql │ │ │ │ ├── expressionWithNoTokens.aql │ │ │ │ ├── expressionWithoutResults.aql │ │ │ │ ├── gt_lt_number.aql │ │ │ │ ├── id.aql │ │ │ │ ├── multipleTokenizationExpressions.aql │ │ │ │ └── nothingIsLessThanNullInAggregation.aql │ │ │ ├── context.json │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── flexsearch-not │ │ │ ├── aql │ │ │ │ ├── a.aql │ │ │ │ ├── b.aql │ │ │ │ ├── c.aql │ │ │ │ ├── d.aql │ │ │ │ ├── e.aql │ │ │ │ ├── f.aql │ │ │ │ ├── g.aql │ │ │ │ ├── h.aql │ │ │ │ ├── i.aql │ │ │ │ ├── j.aql │ │ │ │ └── k.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── inline-mutation-to-many │ │ │ ├── aql │ │ │ │ └── toManyRelation.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── inline-mutation-to-one │ │ │ ├── aql │ │ │ │ ├── checkOldGotRemoved.aql │ │ │ │ ├── createWithNestedToOne.aql │ │ │ │ ├── updateWithNestedToOne.aql │ │ │ │ └── updateWithNewNestedToOne.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── internal-graphql-fields │ │ │ ├── aql │ │ │ │ └── typename.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── multi-mutation │ │ │ ├── aql │ │ │ │ └── multiMutation.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── number-range │ │ │ ├── aql │ │ │ │ ├── firstIncrement.aql │ │ │ │ └── secondIncrement.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── offset-date-time │ │ │ ├── aql │ │ │ │ ├── after.aql │ │ │ │ ├── before.aql │ │ │ │ └── set.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── order-by-relation-with-pagination │ │ │ ├── aql │ │ │ │ ├── addRelation1.aql │ │ │ │ ├── addRelation2.aql │ │ │ │ ├── ascPage1.aql │ │ │ │ └── ascPage2.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── order-by-relation │ │ │ ├── aql │ │ │ │ ├── addRelation1.aql │ │ │ │ ├── addRelation2.aql │ │ │ │ ├── asc.aql │ │ │ │ ├── desc.aql │ │ │ │ ├── relationAndExtensionAsc.aql │ │ │ │ └── relationAndExtensionDesc.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── permissions-creator │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── list.aql │ │ │ │ └── update.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── permissions-deleter │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── list.aql │ │ │ │ └── update.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── permissions-updater │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── list.aql │ │ │ │ └── update.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── query-all │ │ │ ├── aql │ │ │ │ └── allCountries.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── query-single │ │ │ ├── aql │ │ │ │ ├── byID.aql │ │ │ │ ├── byKey.aql │ │ │ │ ├── emptyArg.aql │ │ │ │ ├── notFound.aql │ │ │ │ └── nullAndNonNullArg.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── reference-create-and-update │ │ │ ├── aql │ │ │ │ ├── createWithKeyField.aql │ │ │ │ ├── createWithReferenceField.aql │ │ │ │ ├── createWithSingleField.aql │ │ │ │ ├── updateWithKeyField.aql │ │ │ │ ├── updateWithReferenceField.aql │ │ │ │ └── updateWithSingleField.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── reference-filter │ │ │ ├── aql │ │ │ │ ├── filterKeyField.aql │ │ │ │ ├── filterKeyFieldMissingReference.aql │ │ │ │ ├── filterMissingReference.aql │ │ │ │ └── filterReference.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── reference-sort │ │ │ ├── aql │ │ │ │ ├── orderByKeyField.aql │ │ │ │ └── orderByReferenceField.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── reference-to-id │ │ │ ├── aql │ │ │ │ ├── referenceToExistingID.aql │ │ │ │ └── referenceToWrongID.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── traversal-after-mutation │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ └── update.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-all │ │ │ ├── aql │ │ │ │ ├── all.aql │ │ │ │ └── onlyFirst.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-child-entities-dict │ │ │ ├── aql │ │ │ │ ├── addSome.aql │ │ │ │ ├── addUpdateAndDelete.aql │ │ │ │ ├── afterUpdateMultiple.aql │ │ │ │ ├── afterUpdateOne.aql │ │ │ │ ├── end.aql │ │ │ │ ├── updateMultiple.aql │ │ │ │ └── updateOne.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-child-entities │ │ │ ├── aql │ │ │ │ ├── addSome.aql │ │ │ │ ├── addUpdateAndDelete.aql │ │ │ │ ├── afterUpdateMultiple.aql │ │ │ │ ├── afterUpdateOne.aql │ │ │ │ ├── end.aql │ │ │ │ ├── updateMultiple.aql │ │ │ │ └── updateOne.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-empty-child-entities-list-dict │ │ │ ├── aql │ │ │ │ ├── afterClear.aql │ │ │ │ ├── afterUpdateMultiple.aql │ │ │ │ ├── clearItems.aql │ │ │ │ └── updateMultiple.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-empty-child-entities-list │ │ │ ├── aql │ │ │ │ ├── afterClear.aql │ │ │ │ ├── afterUpdateMultiple.aql │ │ │ │ ├── clearItems.aql │ │ │ │ └── updateMultiple.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-many │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-not-found │ │ │ ├── aql │ │ │ │ └── updateNotFound.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-with-to-many-relation │ │ │ ├── aql │ │ │ │ ├── add.aql │ │ │ │ ├── add2.aql │ │ │ │ ├── check1.aql │ │ │ │ ├── check2.aql │ │ │ │ ├── check3.aql │ │ │ │ ├── check4.aql │ │ │ │ ├── remove.aql │ │ │ │ └── remove2.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── update-with-to-one-relation │ │ │ ├── aql │ │ │ ├── check1.aql │ │ │ ├── check2.aql │ │ │ ├── check3.aql │ │ │ ├── check4.aql │ │ │ ├── leave.aql │ │ │ ├── replace.aql │ │ │ ├── set.aql │ │ │ └── unset.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── namespaced_logistics │ │ ├── default-context.json │ │ ├── model │ │ │ ├── country.graphqls │ │ │ ├── dangerous-goods.graphqls │ │ │ ├── delivery.graphqls │ │ │ ├── handling-unit.graphqls │ │ │ ├── number-range.graphqls │ │ │ ├── secret.graphqls │ │ │ ├── translation.graphqls │ │ │ └── valueobjects │ │ │ │ └── address.graphqls │ │ ├── test-data.json │ │ └── tests │ │ │ ├── add-child-entity │ │ │ ├── aql │ │ │ │ ├── add.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── add-root-entity │ │ │ ├── aql │ │ │ │ ├── add.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── aliases │ │ │ ├── aql │ │ │ │ └── aliases.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create-with-to-many-relation │ │ │ ├── aql │ │ │ │ ├── check.aql │ │ │ │ └── create.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create-with-to-one-relation │ │ │ ├── aql │ │ │ │ ├── check.aql │ │ │ │ └── create.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── create │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ └── query.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── field-permission-denied │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── filter.aql │ │ │ │ ├── prepare.aql │ │ │ │ ├── select.aql │ │ │ │ ├── selectMeta.aql │ │ │ │ ├── sort.aql │ │ │ │ └── update.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── field-permission-granted │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── delete.aql │ │ │ │ ├── filter.aql │ │ │ │ ├── prepare.aql │ │ │ │ ├── select.aql │ │ │ │ ├── selectMeta.aql │ │ │ │ ├── sort.aql │ │ │ │ └── update.aql │ │ │ ├── context.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter-by-relation │ │ │ ├── aql │ │ │ │ ├── addRelation1.aql │ │ │ │ ├── addRelation2.aql │ │ │ │ └── q.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── internal-graphql-fields │ │ │ ├── aql │ │ │ │ └── typename.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── number-range │ │ │ ├── aql │ │ │ │ ├── firstIncrement.aql │ │ │ │ └── secondIncrement.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── order-by-relation-with-pagination │ │ │ ├── aql │ │ │ │ ├── addRelation1.aql │ │ │ │ ├── addRelation2.aql │ │ │ │ ├── ascPage1.aql │ │ │ │ └── ascPage2.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── order-by-relation │ │ │ ├── aql │ │ │ │ ├── addRelation1.aql │ │ │ │ ├── addRelation2.aql │ │ │ │ ├── asc.aql │ │ │ │ ├── desc.aql │ │ │ │ ├── relationAndExtensionAsc.aql │ │ │ │ └── relationAndExtensionDesc.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── query-all │ │ │ ├── aql │ │ │ │ └── queryAll.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── update-with-to-many-relation │ │ │ ├── aql │ │ │ │ ├── add.aql │ │ │ │ ├── add2.aql │ │ │ │ ├── check1.aql │ │ │ │ ├── check2.aql │ │ │ │ ├── check3.aql │ │ │ │ ├── check4.aql │ │ │ │ ├── remove.aql │ │ │ │ └── remove2.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── update-with-to-one-relation │ │ │ ├── aql │ │ │ ├── check1.aql │ │ │ ├── check2.aql │ │ │ ├── check3.aql │ │ │ ├── check4.aql │ │ │ ├── leave.aql │ │ │ ├── replace.aql │ │ │ ├── set.aql │ │ │ └── unset.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── no-root-entity-order-by │ │ ├── default-context.json │ │ ├── model │ │ │ ├── model.graphqls │ │ │ └── permission-profiles.json │ │ ├── options.json │ │ ├── test-data.json │ │ └── tests │ │ │ └── introspection │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── papers │ │ ├── default-context.json │ │ ├── model │ │ │ ├── i18n.de.yml │ │ │ ├── paper.graphqls │ │ │ └── user.graphqls │ │ ├── test-data.json │ │ └── tests │ │ │ ├── count-first │ │ │ ├── aql │ │ │ │ └── countWithFirst.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── count │ │ │ ├── aql │ │ │ │ └── count.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── filter │ │ │ ├── aql │ │ │ │ ├── contains.aql │ │ │ │ ├── contains_empty_string.aql │ │ │ │ ├── ends_with.aql │ │ │ │ ├── enums.aql │ │ │ │ ├── eq.aql │ │ │ │ ├── gt.aql │ │ │ │ ├── gte.aql │ │ │ │ ├── in.aql │ │ │ │ ├── like.aql │ │ │ │ ├── lt.aql │ │ │ │ ├── lte.aql │ │ │ │ ├── neq.aql │ │ │ │ ├── not_contains.aql │ │ │ │ ├── not_contains_empty_string.aql │ │ │ │ ├── not_ends_with.aql │ │ │ │ ├── not_in.aql │ │ │ │ ├── not_like.aql │ │ │ │ ├── not_starts_with.aql │ │ │ │ ├── or.aql │ │ │ │ └── starts_with.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── invalid-cursors │ │ │ ├── aql │ │ │ │ ├── invalidJSON.aql │ │ │ │ ├── missingProperty.aql │ │ │ │ └── nonObjectJSON.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── no-attributes │ │ │ ├── aql │ │ │ │ ├── onlyCursor.aql │ │ │ │ └── onlyCursorNoLimit.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── pagination-combinations │ │ │ ├── aql │ │ │ │ ├── after.aql │ │ │ │ ├── afterAndFirst.aql │ │ │ │ ├── afterAndSkip.aql │ │ │ │ ├── afterAndSkipAndFirst.aql │ │ │ │ ├── all.aql │ │ │ │ ├── first.aql │ │ │ │ ├── skip.aql │ │ │ │ └── skipAndFirst.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── pagination-flexsearch-combinations │ │ │ ├── aql │ │ │ │ ├── after.aql │ │ │ │ ├── afterAndFirst.aql │ │ │ │ ├── afterAndSkipAndFirst.aql │ │ │ │ ├── all.aql │ │ │ │ ├── first.aql │ │ │ │ ├── skip.aql │ │ │ │ └── skipAndFirst.aql │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── pagination-flexsearch │ │ │ ├── aql │ │ │ │ ├── noPagesLeft.aql │ │ │ │ ├── noPaginationButCursor.aql │ │ │ │ ├── noPaginationButCursorAndSort.aql │ │ │ │ └── pagination.aql │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── pagination │ │ │ ├── aql │ │ │ │ ├── noPagesLeft.aql │ │ │ │ ├── noPaginationButCursor.aql │ │ │ │ └── pagination.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── quantifiers │ │ │ ├── aql │ │ │ │ ├── allPapersHavingACertainLiteraturReferences.aql │ │ │ │ ├── allPapersHavingLiteraturReferences.aql │ │ │ │ ├── allPapersHavingLiteraturReferencesLike.aql │ │ │ │ ├── allPapersNotInOneOfTheseCategories.aql │ │ │ │ ├── allPapersOfSomeCategories.aql │ │ │ │ ├── allPapersWhichHaveOnlyOneOfTheseCategories.aql │ │ │ │ └── allPapersWihoutLiteraturReferences.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── references │ │ │ ├── aql │ │ │ │ └── references.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── rollback-on-error │ │ │ ├── aql │ │ │ │ ├── create.aql │ │ │ │ ├── createAnother.aql │ │ │ │ ├── queryOne.aql │ │ │ │ ├── queryStillOne.aql │ │ │ │ ├── queryTwo.aql │ │ │ │ └── updateMissingAndCreateAnother.aql │ │ │ ├── meta.json │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── serial-mutations │ │ │ ├── aql │ │ │ │ ├── a.aql │ │ │ │ └── b.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── simple-sorting │ │ │ ├── aql │ │ │ │ └── sort.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── sort-and-paginate │ │ │ ├── aql │ │ │ │ ├── emptyPage.aql │ │ │ │ ├── page1.aql │ │ │ │ ├── page1Desc.aql │ │ │ │ ├── page2.aql │ │ │ │ └── page2Desc.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── sorting │ │ │ ├── aql │ │ │ ├── boolean.aql │ │ │ └── string.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── regression-suite.ts │ ├── regressions.spec.ts │ ├── relation-delete-actions │ │ ├── default-context.json │ │ ├── model │ │ │ ├── model.graphqls │ │ │ └── permission-profiles.json │ │ ├── test-data.json │ │ └── tests │ │ │ ├── cascade │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── delete.aql │ │ │ │ └── everything.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── indirect-cascade │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── delete.aql │ │ │ │ └── everything.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── indirect-restrict │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── deleteRestricted.aql │ │ │ │ ├── deleteSuccessfully.aql │ │ │ │ └── everything.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── restrict-with-recursion │ │ │ ├── aql │ │ │ │ ├── createEdges.aql │ │ │ │ ├── deleteRestricted.aql │ │ │ │ ├── deleteSuccessfully.aql │ │ │ │ ├── everything1.aql │ │ │ │ └── everything2.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── restrict │ │ │ ├── aql │ │ │ ├── createEdges.aql │ │ │ ├── deleteRestricted.aql │ │ │ ├── deleteSuccessfully.aql │ │ │ └── everything.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ ├── root-fields │ │ ├── default-context.json │ │ ├── model │ │ │ ├── model.graphqls │ │ │ └── permission-profiles.json │ │ ├── test-data.json │ │ └── tests │ │ │ ├── root-and-parent-with-collect │ │ │ ├── aql │ │ │ │ ├── createEdge.aql │ │ │ │ └── q.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── root-and-parent-with-intra-root-entity-collect │ │ │ ├── aql │ │ │ │ └── test.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ ├── root-and-parent │ │ │ ├── aql │ │ │ │ └── test.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ │ │ └── root-with-collect │ │ │ ├── aql │ │ │ ├── createEdge.aql │ │ │ ├── filter.aql │ │ │ ├── order.aql │ │ │ └── q.aql │ │ │ ├── result.json │ │ │ └── test.graphql │ └── traversal-performance │ │ ├── default-context.json │ │ ├── meta.json │ │ ├── model │ │ ├── model.graphqls │ │ └── permission-profiles.json │ │ ├── test-data.ts │ │ └── tests │ │ ├── collect │ │ ├── aql │ │ │ ├── RelationAndFieldTraversal.aql │ │ │ └── RelationAndFieldTraversalWithParent.aql │ │ ├── result.json │ │ └── test.graphql │ │ ├── relations │ │ ├── aql │ │ │ └── Relation.aql │ │ ├── result.json │ │ └── test.graphql │ │ └── test-memory-limit │ │ ├── aql │ │ ├── ExpectedToFail.aql │ │ └── ExpectedToSucceed.aql │ │ ├── result.json │ │ └── test.graphql ├── schema-generation │ ├── create-input-type-generator.spec.ts │ ├── createdat-updatedat-modification.spec.ts │ ├── enum-type-generator.spec.ts │ ├── memorize-decorator.spec.ts │ └── order-by-enum-generator.spec.ts ├── schema │ ├── ast-validation-modules │ │ ├── business-object.spec.ts │ │ ├── check-directed-relation-edges-validator.spec.ts │ │ ├── collect-validation.spec.ts │ │ ├── entity-directive-nesting-validator.spec.ts │ │ ├── flex-search-commit-interval-msec-validator.spec.ts │ │ ├── helpers.ts │ │ ├── illegal-enum-values.spec.ts │ │ ├── indices-validator.spec.ts │ │ ├── indices.spec.ts │ │ ├── key-field-validator.spec.ts │ │ ├── known-field-directive-validator.spec.ts │ │ ├── known-object-type-directive-validator.spec.ts │ │ ├── module-consistency-validator.spec.ts │ │ ├── modules-validator.spec.ts │ │ ├── no-duplicate-types-validator.spec.ts │ │ ├── no-lists-of-lists-validator.spec.ts │ │ ├── no-lists-of-references-validator.spec.ts │ │ ├── no-unused-non-root-object-types-validator.spec.ts │ │ ├── non-unique-fields-validator.spec.ts │ │ ├── object-directive-count-validator.spec.ts │ │ ├── only-allowed-types-validator.spec.ts │ │ ├── parent-field.spec.ts │ │ ├── references-only-to-root-entities-with-key-field-validator.spec.ts │ │ ├── references-with-key-field.spec.ts │ │ ├── relations-only-in-root-entities-validator.spec.ts │ │ ├── relations-only-to-root-entities-validator.spec.ts │ │ ├── relations.spec.ts │ │ ├── roles-and-permission-profile-combined.spec.ts │ │ ├── roles-on-non-root-entity-types.spec.ts │ │ ├── root-entities-without-read-roles.spec.ts │ │ ├── root-field.spec.ts │ │ ├── suppress.spec.ts │ │ ├── system-field-override.spec.ts │ │ ├── ttl.spec.ts │ │ ├── undefined-permission-profile.spec.ts │ │ └── undefined-types.spec.ts │ ├── preparation │ │ └── ast-transformation-modules │ │ │ └── add-namespaces-to-types-transformer.spec.ts │ ├── scalars │ │ ├── date-time.spec.ts │ │ ├── fixed-point-decimals.spec.ts │ │ ├── int53.spec.ts │ │ ├── local-date.spec.ts │ │ ├── local-time.spec.ts │ │ ├── offset-date-time.spec.ts │ │ └── string-map.spec.ts │ ├── schema-builder.spec.ts │ └── source-validation-modules │ │ ├── check-graphql-syntax.spec.ts │ │ ├── check-json-syntax.spec.ts │ │ ├── check-yaml-syntax.spec.ts │ │ ├── graphql-rules.spec.ts │ │ ├── permission-profile-validator.spec.ts │ │ ├── sidecar-schema.spec.ts │ │ ├── source-validation-helper.ts │ │ └── yaml-parser.spec.ts └── utils │ ├── group-by-equivalence.spec.ts │ ├── utils.spec.ts │ └── visitor.spec.ts ├── src ├── authorization │ ├── auth-basics.ts │ ├── execution.ts │ ├── move-errors-to-output-nodes.ts │ ├── permission-descriptors-in-model.ts │ ├── permission-descriptors.ts │ └── transformers │ │ ├── affected-field-info.ts │ │ ├── create-entities.ts │ │ ├── create-entity.ts │ │ ├── entities.ts │ │ ├── field.ts │ │ ├── follow-edge.ts │ │ ├── index.ts │ │ ├── traversal.ts │ │ └── update-delete-entities.ts ├── config │ ├── global.ts │ ├── interfaces.ts │ ├── logging.ts │ └── parsed-project.ts ├── cruddl-version.ts ├── database │ ├── arangodb │ │ ├── aql-generator.ts │ │ ├── aql.ts │ │ ├── arango-basics.ts │ │ ├── arangodb-adapter.ts │ │ ├── arangojs-instrumentation │ │ │ ├── config.ts │ │ │ ├── custom-connection.ts │ │ │ ├── custom-database.ts │ │ │ └── custom-request.ts │ │ ├── cancellation-manager.ts │ │ ├── config.ts │ │ ├── error-codes.ts │ │ ├── index.ts │ │ ├── revision-helper.ts │ │ ├── schema-migration │ │ │ ├── analyzer.ts │ │ │ ├── arango-search-helpers.ts │ │ │ ├── index-helpers.ts │ │ │ ├── migrations.ts │ │ │ └── performer.ts │ │ ├── traversal-helpers.ts │ │ └── version-helper.ts │ ├── database-adapter.ts │ ├── inmemory │ │ ├── index.ts │ │ ├── inmemory-adapter.ts │ │ ├── inmemory-basics.ts │ │ ├── js-generator.ts │ │ └── js.ts │ └── like-helpers.ts ├── execution │ ├── execution-options.ts │ ├── execution-result.ts │ ├── operation-resolver.ts │ ├── runtime-errors.ts │ ├── schema-executor.ts │ └── transaction-error.ts ├── graphql │ ├── argument-values.ts │ ├── field-collection.ts │ ├── is-comment-only-source.ts │ ├── language-utils.ts │ ├── operation-based-resolvers.ts │ ├── operations.ts │ ├── pretty-print.ts │ ├── query-distiller.ts │ ├── schema-utils.ts │ ├── value-from-ast.ts │ └── value-to-ast.ts ├── meta-schema │ ├── constants.ts │ └── meta-schema.ts ├── model │ ├── change-set │ │ ├── apply-change-set.ts │ │ └── change-set.ts │ ├── compatibility-check │ │ ├── check-business-object.ts │ │ ├── check-calc-mutations.ts │ │ ├── check-collect-field.ts │ │ ├── check-default-value.ts │ │ ├── check-enum-type.ts │ │ ├── check-field-type.ts │ │ ├── check-field.ts │ │ ├── check-flex-search-on-field.ts │ │ ├── check-flex-search-on-type.ts │ │ ├── check-indices.ts │ │ ├── check-key-field.ts │ │ ├── check-model.ts │ │ ├── check-object-type.ts │ │ ├── check-reference.ts │ │ ├── check-relation.ts │ │ ├── check-root-and-parent-directives.ts │ │ ├── check-root-entity-type.ts │ │ ├── check-ttl.ts │ │ ├── check-type.ts │ │ ├── describe-module-specification.ts │ │ └── utils.ts │ ├── config │ │ ├── billing.ts │ │ ├── field.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── indices.ts │ │ ├── model.ts │ │ ├── module-specification.ts │ │ ├── module.ts │ │ ├── permissions.ts │ │ ├── time-to-live.ts │ │ └── type.ts │ ├── create-model.ts │ ├── implementation │ │ ├── billing.ts │ │ ├── built-in-types.ts │ │ ├── child-entity-type.ts │ │ ├── collect-path.ts │ │ ├── entity-extension-type.ts │ │ ├── enum-type.ts │ │ ├── field-path.ts │ │ ├── field.ts │ │ ├── flex-search.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── indices.ts │ │ ├── model.ts │ │ ├── modules │ │ │ ├── base-module-specification.ts │ │ │ ├── effective-module-specification.ts │ │ │ ├── expression-parser.ts │ │ │ ├── field-module-specification.ts │ │ │ ├── module-declaration.ts │ │ │ ├── patterns.ts │ │ │ └── type-module-specification.ts │ │ ├── namespace.ts │ │ ├── object-type-base.ts │ │ ├── order.ts │ │ ├── permission-profile.ts │ │ ├── relation.ts │ │ ├── roles-specifier.ts │ │ ├── root-entity-type.ts │ │ ├── scalar-type.ts │ │ ├── time-to-live.ts │ │ ├── type-base.ts │ │ ├── type.ts │ │ └── value-object-type.ts │ ├── index.ts │ ├── parse-billing.ts │ ├── parse-i18n.ts │ ├── parse-modules.ts │ ├── parse-ttl.ts │ ├── utils │ │ ├── emedding-entity-types.ts │ │ └── recursive-cascade.ts │ └── validation │ │ ├── index.ts │ │ ├── location.ts │ │ ├── message.ts │ │ ├── quick-fix.ts │ │ ├── result.ts │ │ ├── suppress │ │ ├── is-suppressed.ts │ │ ├── message-codes.ts │ │ ├── quick-fix.ts │ │ └── utils.ts │ │ └── validation-context.ts ├── project │ ├── invalid-project-error.ts │ ├── project-from-fs.ts │ ├── project.ts │ ├── select-modules-in-sources.ts │ ├── source.ts │ └── time-to-live.ts ├── query-tree │ ├── base.ts │ ├── billing.ts │ ├── child-entities.ts │ ├── errors.ts │ ├── flex-search.ts │ ├── index.ts │ ├── lists.ts │ ├── literals.ts │ ├── mutations.ts │ ├── objects.ts │ ├── operators.ts │ ├── pre-exec.ts │ ├── quantifiers.ts │ ├── queries.ts │ ├── type-check.ts │ ├── utils │ │ ├── extract-variable-assignments.ts │ │ ├── index.ts │ │ ├── simplify-booleans.ts │ │ └── static-evaluation.ts │ ├── validation.ts │ ├── variables.ts │ └── visitor.ts ├── schema-generation │ ├── billing-type-generator.ts │ ├── create-input-types │ │ ├── generator.ts │ │ ├── index.ts │ │ ├── input-fields.ts │ │ ├── input-types.ts │ │ └── relation-fields.ts │ ├── delete-all-generator.ts │ ├── enum-type-generator.ts │ ├── field-nodes.ts │ ├── field-path-node.ts │ ├── filter-augmentation.ts │ ├── filter-input-types │ │ ├── constants.ts │ │ ├── filter-fields.ts │ │ ├── generator.ts │ │ └── index.ts │ ├── flex-search-filter-input-types │ │ ├── constants.ts │ │ ├── filter-fields.ts │ │ ├── filter-types.ts │ │ ├── generator.ts │ │ └── index.ts │ ├── flex-search-generator.ts │ ├── flex-search-post-filter-augmentation.ts │ ├── graphql-errors.ts │ ├── index.ts │ ├── limit-augmentation.ts │ ├── list-augmentation.ts │ ├── meta-type-generator.ts │ ├── mutation-type-generator.ts │ ├── order-by-and-pagination-augmentation.ts │ ├── order-by-enum-generator.ts │ ├── output-type-generator.ts │ ├── query-node-object-type │ │ ├── context.ts │ │ ├── convert.ts │ │ ├── definition.ts │ │ ├── field-resolver.ts │ │ ├── index.ts │ │ ├── query-node-generator.ts │ │ └── utils.ts │ ├── query-type-generator.ts │ ├── root-field-helper.ts │ ├── root-types-generator.ts │ ├── schema-generator.ts │ ├── typed-input-object-type.ts │ ├── unique-field-arguments-generator.ts │ ├── update-input-types │ │ ├── generator.ts │ │ ├── index.ts │ │ ├── input-fields.ts │ │ ├── input-types.ts │ │ └── relation-fields.ts │ └── utils │ │ ├── billing-nodes.ts │ │ ├── entities-by-unique-field.ts │ │ ├── filtering.ts │ │ ├── flex-search-utils.ts │ │ ├── input-types.ts │ │ ├── map.ts │ │ ├── pagination.ts │ │ └── relations.ts ├── schema │ ├── constants.ts │ ├── graphql-base.ts │ ├── names.ts │ ├── preparation │ │ ├── ast-validation-modules │ │ │ ├── indices-validator.ts │ │ │ ├── key-field-validator.ts │ │ │ ├── no-lists-of-lists-validator.ts │ │ │ ├── no-unused-non-root-object-types-validator.ts │ │ │ └── roles-on-non-root-entity-types.ts │ │ ├── ast-validator.ts │ │ ├── pre-merge-ast-transformation-modules │ │ │ └── add-namespaces-to-types-transformer.ts │ │ ├── source-validation-modules │ │ │ ├── graphql-rules.ts │ │ │ ├── permission-profile-validator.ts │ │ │ ├── schema │ │ │ │ ├── schema.json │ │ │ │ ├── validate-schema.d.ts │ │ │ │ └── validate-schema.js │ │ │ └── sidecar-schema.ts │ │ └── transformation-pipeline.ts │ ├── scalars │ │ ├── date-time.ts │ │ ├── fixed-point-decimals.ts │ │ ├── int53.ts │ │ ├── local-date.ts │ │ ├── local-time.ts │ │ ├── offset-date-time.ts │ │ └── string-map.ts │ ├── schema-builder.ts │ └── schema-utils.ts ├── typings │ ├── json-lint.d.ts │ └── json-source-map.d.ts └── utils │ ├── colors.ts │ ├── error-with-cause.ts │ ├── group-by-equivalence.ts │ ├── util-types.ts │ ├── utils.ts │ ├── visitor.ts │ └── watch.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.graphqlconfig -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/SECURITY.md -------------------------------------------------------------------------------- /arangodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/arangodb/package.json -------------------------------------------------------------------------------- /core-exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/core-exports.ts -------------------------------------------------------------------------------- /core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/core/package.json -------------------------------------------------------------------------------- /cruddl-bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/cruddl-bench.js -------------------------------------------------------------------------------- /cruddl-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/cruddl-dev.js -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/billing.md -------------------------------------------------------------------------------- /docs/flexSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/flexSearch.md -------------------------------------------------------------------------------- /docs/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/i18n.md -------------------------------------------------------------------------------- /docs/modelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/modelling.md -------------------------------------------------------------------------------- /docs/time-to-live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/docs/time-to-live.md -------------------------------------------------------------------------------- /emit-cruddl-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/emit-cruddl-version.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | db/* 3 | package-lock.json -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/example/package.json -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/example/readme.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/index.ts -------------------------------------------------------------------------------- /inmemory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/inmemory/package.json -------------------------------------------------------------------------------- /knip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/knip.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/package.json -------------------------------------------------------------------------------- /spec/authorization/move-errors-to-output-nodes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/authorization/move-errors-to-output-nodes.spec.ts -------------------------------------------------------------------------------- /spec/authorization/permission-descriptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/authorization/permission-descriptor.spec.ts -------------------------------------------------------------------------------- /spec/authorization/permission-profile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/authorization/permission-profile.spec.ts -------------------------------------------------------------------------------- /spec/database/arangodb/aql-generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/arangodb/aql-generator.spec.ts -------------------------------------------------------------------------------- /spec/database/arangodb/aql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/arangodb/aql.spec.ts -------------------------------------------------------------------------------- /spec/database/arangodb/arangodb-adapter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/arangodb/arangodb-adapter.spec.ts -------------------------------------------------------------------------------- /spec/database/arangodb/arangodb-test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/arangodb/arangodb-test-utils.ts -------------------------------------------------------------------------------- /spec/database/arangodb/retry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/arangodb/retry.spec.ts -------------------------------------------------------------------------------- /spec/database/arangodb/ttl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/arangodb/ttl.spec.ts -------------------------------------------------------------------------------- /spec/database/like-helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/database/like-helper.spec.ts -------------------------------------------------------------------------------- /spec/dev/fast-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/fast-server.ts -------------------------------------------------------------------------------- /spec/dev/model/billing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/model/billing.json -------------------------------------------------------------------------------- /spec/dev/model/i18n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/model/i18n.yml -------------------------------------------------------------------------------- /spec/dev/model/namespace/test.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/model/namespace/test.graphqls -------------------------------------------------------------------------------- /spec/dev/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/dev/model/simple.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/model/simple.graphqls -------------------------------------------------------------------------------- /spec/dev/model/ttl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/model/ttl.json -------------------------------------------------------------------------------- /spec/dev/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/server.ts -------------------------------------------------------------------------------- /spec/dev/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/dev/start.ts -------------------------------------------------------------------------------- /spec/graphql/query-distiller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/graphql/query-distiller.spec.ts -------------------------------------------------------------------------------- /spec/helpers/generate-random-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/helpers/generate-random-string.ts -------------------------------------------------------------------------------- /spec/helpers/log4js-logger-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/helpers/log4js-logger-provider.ts -------------------------------------------------------------------------------- /spec/helpers/warn-and-error-logger-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/helpers/warn-and-error-logger-provider.ts -------------------------------------------------------------------------------- /spec/init.mocha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/init.mocha.ts -------------------------------------------------------------------------------- /spec/meta-schema/meta-schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/meta-schema/meta-schema.spec.ts -------------------------------------------------------------------------------- /spec/model/change-set/apply-change-set.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/change-set/apply-change-set.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-business-object.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-business-object.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-calc-mutations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-calc-mutations.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-collect-field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-collect-field.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-default-value.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-default-value.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-enums.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-enums.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-field-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-field-type.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-flex-search-on-field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-flex-search-on-field.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-flex-search-on-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-flex-search-on-type.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-indices.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-indices.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-key-field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-key-field.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-model.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-object-types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-object-types.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-reference.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-reference.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-relation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-relation.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/check-ttl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/check-ttl.spec.ts -------------------------------------------------------------------------------- /spec/model/compatibility-check/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/compatibility-check/utils.ts -------------------------------------------------------------------------------- /spec/model/create-model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/create-model.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/billing-validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/billing-validation.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/collect-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/collect-path.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/effective-module-specification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/effective-module-specification.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/entity-extenion-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/entity-extenion-type.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/field.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/flex-search-validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/flex-search-validation.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/i18n-fields.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/i18n-fields.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/i18n-types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/i18n-types.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/i18n-validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/i18n-validation.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/indices.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/indices.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/model.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/namespace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/namespace.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/object-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/object-type.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/relation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/relation.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/root-entity-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/root-entity-type.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/type.spec.ts -------------------------------------------------------------------------------- /spec/model/implementation/validation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/implementation/validation-utils.ts -------------------------------------------------------------------------------- /spec/model/model-spec.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/model-spec.helper.ts -------------------------------------------------------------------------------- /spec/model/validation/suppress/quick-fix.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/model/validation/suppress/quick-fix.spec.ts -------------------------------------------------------------------------------- /spec/performance/associations.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/associations.perf.ts -------------------------------------------------------------------------------- /spec/performance/count.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/count.perf.ts -------------------------------------------------------------------------------- /spec/performance/crud.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/crud.perf.ts -------------------------------------------------------------------------------- /spec/performance/filter.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/filter.perf.ts -------------------------------------------------------------------------------- /spec/performance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/index.ts -------------------------------------------------------------------------------- /spec/performance/pagination.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/pagination.perf.ts -------------------------------------------------------------------------------- /spec/performance/query-pipeline.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/query-pipeline.perf.ts -------------------------------------------------------------------------------- /spec/performance/references.perf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/references.perf.ts -------------------------------------------------------------------------------- /spec/performance/support/async-bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/support/async-bench.ts -------------------------------------------------------------------------------- /spec/performance/support/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/support/helpers.ts -------------------------------------------------------------------------------- /spec/performance/support/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/performance/support/runner.ts -------------------------------------------------------------------------------- /spec/project/project.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/project/project.spec.ts -------------------------------------------------------------------------------- /spec/project/select-modules-in-sources.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/project/select-modules-in-sources.spec.ts -------------------------------------------------------------------------------- /spec/query-tree/utils/simplify-booleans.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/query-tree/utils/simplify-booleans.spec.ts -------------------------------------------------------------------------------- /spec/regression/access-groups/model/file.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/model/file.graphqls -------------------------------------------------------------------------------- /spec/regression/access-groups/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/regression/access-groups/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/test-data.json -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/accounting/aql/allFiles.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/accounting/aql/allFiles.aql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/accounting/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["accounting"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/accounting/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/accounting/result.json -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/accounting/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/accounting/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/flex-search/aql/flexAuth.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/flex-search/aql/flexAuth.aql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/flex-search/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/flex-search/result.json -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/flex-search/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/flex-search/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics-reader-bulk/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics-reader"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics-reader-many/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics-reader"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics-reader/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/logistics-reader/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics-reader/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics-reader"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics-reader/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/logistics-reader/result.json -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics-reader/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/logistics-reader/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/logistics/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/logistics/result.json -------------------------------------------------------------------------------- /spec/regression/access-groups/tests/logistics/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-groups/tests/logistics/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-restrictions/model/file.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/model/file.graphqls -------------------------------------------------------------------------------- /spec/regression/access-restrictions/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/test-data.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/accounting/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["accounting"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/accounting/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/accounting/result.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/accounting/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/accounting/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/customer-flex/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/customer/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/customer/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/customer/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/customer/context.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/customer/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/customer/result.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/customer/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/customer/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/flex-search/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["accounting"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/flex-search/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/flex-search/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/flex-search/result.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/flex-search/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/flex-search/test.graphql -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics-reader-bulk/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics-reader"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics-reader-many/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics-reader"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics-reader/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics-reader"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/logistics/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/logistics/result.json -------------------------------------------------------------------------------- /spec/regression/access-restrictions/tests/logistics/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/access-restrictions/tests/logistics/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["users"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/collect/model/model.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/model/model.graphqls -------------------------------------------------------------------------------- /spec/regression/collect/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/regression/collect/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/test-data.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/collect-edge-count/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/collect-edge-count/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/collect-edge-count/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/collect-edge-count/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/tests/distinct-aggregation/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/distinct-aggregation/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/distinct-aggregation/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/distinct-aggregation/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-aggregation/aql/fields.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-aggregation/aql/fields.aql -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-aggregation/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-aggregation/context.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-aggregation/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-aggregation/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-aggregation/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-aggregation/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-traversal/aql/fieldsToN.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-traversal/aql/fieldsToN.aql -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-traversal/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-traversal/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/field-traversal/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/field-traversal/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/tests/input-type-compat/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/input-type-compat/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/collect/tests/input-type-compat/aql/update.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/input-type-compat/aql/update.aql -------------------------------------------------------------------------------- /spec/regression/collect/tests/input-type-compat/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/input-type-compat/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/input-type-compat/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/input-type-compat/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/tests/nested-field-traversal/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/nested-field-traversal/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/nested-field-traversal/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/nested-field-traversal/test.graphql -------------------------------------------------------------------------------- /spec/regression/collect/tests/relation-traversal/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/relation-traversal/result.json -------------------------------------------------------------------------------- /spec/regression/collect/tests/relation-traversal/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/collect/tests/relation-traversal/test.graphql -------------------------------------------------------------------------------- /spec/regression/drop-test-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/drop-test-db.ts -------------------------------------------------------------------------------- /spec/regression/init-test-data-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/init-test-data-context.ts -------------------------------------------------------------------------------- /spec/regression/initialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/initialization.ts -------------------------------------------------------------------------------- /spec/regression/keywords/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["allusers"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/keywords/model/model.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/keywords/model/model.graphqls -------------------------------------------------------------------------------- /spec/regression/keywords/tests/escaped-keywords/aql/m.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/keywords/tests/escaped-keywords/aql/m.aql -------------------------------------------------------------------------------- /spec/regression/keywords/tests/escaped-keywords/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/keywords/tests/escaped-keywords/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/keywords/tests/escaped-keywords/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/keywords/tests/escaped-keywords/result.json -------------------------------------------------------------------------------- /spec/regression/keywords/tests/escaped-keywords/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/keywords/tests/escaped-keywords/test.graphql -------------------------------------------------------------------------------- /spec/regression/list-limits/model/hero.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/model/hero.graphqls -------------------------------------------------------------------------------- /spec/regression/list-limits/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/regression/list-limits/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/test-data.json -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/explicit-limit-query/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/tests/explicit-limit-query/result.json -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/implicit-limit-query/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/tests/implicit-limit-query/result.json -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/no-limits-mutation/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["users"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/no-limits-mutation/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/tests/no-limits-mutation/result.json -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/no-limits-mutation/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/tests/no-limits-mutation/test.graphql -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/no-limits-query/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["users"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/no-limits-query/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/tests/no-limits-query/result.json -------------------------------------------------------------------------------- /spec/regression/list-limits/tests/no-limits-query/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/list-limits/tests/no-limits-query/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/default-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/default-context.json -------------------------------------------------------------------------------- /spec/regression/logistics/model/address.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/address.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/billing.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/billing.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/billing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/billing.json -------------------------------------------------------------------------------- /spec/regression/logistics/model/country.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/country.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/dangerous-goods.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/dangerous-goods.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/delivery.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/delivery.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/handling-unit.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/handling-unit.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/number-range.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/number-range.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/regression/logistics/model/secret.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/secret.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/model/translation.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/model/translation.graphqls -------------------------------------------------------------------------------- /spec/regression/logistics/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/test-data.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-child-entity/aql/add.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-child-entity/aql/add.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-child-entity/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-child-entity/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-child-entity/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-child-entity/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-child-entity/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-child-entity/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-root-entity/aql/add.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-root-entity/aql/add.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-root-entity/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-root-entity/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-root-entity/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["allusers", "admin"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-root-entity/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-root-entity/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/add-root-entity/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/add-root-entity/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/aliases/aql/aliases.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/aliases/aql/aliases.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/aliases/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/aliases/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/aliases/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/aliases/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/billing/aql/createDelivery.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/billing/aql/createDelivery.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/billing/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/billing/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/billing/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/billing/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/count/aql/count.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/count/aql/count.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/count/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/count/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/count/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/count/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create-many/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create-many/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create-many/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create-many/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create-many/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create-many/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create-many/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create-many/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/create/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/create/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/date-time-invalid/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/date-time-invalid/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/date-time-invalid/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/date-time-invalid/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/date-time/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/date-time/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/date-time/aql/update.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/date-time/aql/update.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/date-time/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/date-time/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/date-time/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/date-time/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/default-value/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/default-value/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/default-value/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/default-value/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all-related/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-all-related/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all-related/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-all-related/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all/aql/all.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-all/aql/all.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all/aql/onlyFirst.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-all/aql/onlyFirst.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["allusers", "admin"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-all/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-all/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-all/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-many/aql/onlyFirst.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-many/aql/onlyFirst.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-many/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-many/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/delete-many/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/delete-many/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/deprecations/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/deprecations/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/deprecations/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/deprecations/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/descriptions/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/descriptions/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/descriptions/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/descriptions/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/entity-extensions/aql/before.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/entity-extensions/aql/before.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/entity-extensions/aql/update.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/entity-extensions/aql/update.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/entity-extensions/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/entity-extensions/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/entity-extensions/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/entity-extensions/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/enum-key-fields/aql/EnumKey.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/enum-key-fields/aql/EnumKey.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/enum-key-fields/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/enum-key-fields/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/enum-key-fields/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/enum-key-fields/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-by-relation/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-by-relation/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-by-relation/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-by-relation/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-by-relation/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-by-relation/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-empty/aql/empty.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-empty/aql/empty.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-empty/aql/none.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-empty/aql/none.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-empty/aql/not_empty.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-empty/aql/not_empty.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-empty/aql/some.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-empty/aql/some.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-empty/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-empty/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-empty/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-empty/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-null/aql/filterInNull.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-null/aql/filterInNull.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-null/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-null/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-null/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-null/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-quantifiers/aql/every.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-quantifiers/aql/every.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-quantifiers/aql/none.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-quantifiers/aql/none.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-quantifiers/aql/some.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-quantifiers/aql/some.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-quantifiers/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-quantifiers/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/filter-quantifiers/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/filter-quantifiers/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-filter-null/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-i18nstring/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["allusers"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-i18nstring/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search-i18nstring/meta.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-i18nstring/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search-i18nstring/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-in-memory/aql/in.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search-in-memory/aql/in.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-in-memory/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search-in-memory/context.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-in-memory/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-in-memory/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search-in-memory/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-in-memory/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search-in-memory/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search-primary-sort/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/aql/containsPhrase.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/aql/containsPhrase.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/aql/equals_null.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/aql/equals_null.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/aql/expression.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/aql/expression.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/aql/gt_lt_number.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/aql/gt_lt_number.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/aql/id.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/aql/id.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/context.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/meta.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flex-search/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flex-search/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/a.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/a.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/b.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/b.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/c.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/c.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/d.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/d.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/e.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/e.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/f.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/f.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/g.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/g.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/h.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/h.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/i.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/i.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/j.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/j.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/aql/k.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/aql/k.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/flexsearch-not/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/flexsearch-not/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/inline-mutation-to-one/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["logistics", "allusers"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/inline-mutation-to-one/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/inline-mutation-to-one/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/multi-mutation/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/multi-mutation/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/multi-mutation/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/multi-mutation/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/number-range/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/number-range/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/number-range/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/number-range/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/offset-date-time/aql/after.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/offset-date-time/aql/after.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/offset-date-time/aql/before.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/offset-date-time/aql/before.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/offset-date-time/aql/set.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/offset-date-time/aql/set.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/offset-date-time/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/offset-date-time/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/offset-date-time/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/offset-date-time/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/order-by-relation/aql/asc.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/order-by-relation/aql/asc.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/order-by-relation/aql/desc.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/order-by-relation/aql/desc.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/order-by-relation/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/order-by-relation/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/order-by-relation/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/order-by-relation/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-creator/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/aql/delete.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-creator/aql/delete.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/aql/list.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-creator/aql/list.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/aql/update.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-creator/aql/update.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["creator"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-creator/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-creator/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-creator/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-deleter/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/aql/delete.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-deleter/aql/delete.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/aql/list.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-deleter/aql/list.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/aql/update.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-deleter/aql/update.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["deleter"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-deleter/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-deleter/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-deleter/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-updater/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/aql/delete.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-updater/aql/delete.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/aql/list.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-updater/aql/list.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/aql/update.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-updater/aql/update.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["updater"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-updater/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/permissions-updater/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/permissions-updater/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-all/aql/allCountries.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-all/aql/allCountries.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-all/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-all/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-all/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-all/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-single/aql/byID.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-single/aql/byID.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-single/aql/byKey.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-single/aql/byKey.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-single/aql/emptyArg.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-single/aql/emptyArg.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-single/aql/notFound.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-single/aql/notFound.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-single/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-single/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/query-single/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/query-single/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/reference-filter/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/reference-filter/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/reference-filter/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/reference-filter/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/reference-sort/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/reference-sort/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/reference-sort/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/reference-sort/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/reference-to-id/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/reference-to-id/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/reference-to-id/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/reference-to-id/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-all/aql/all.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-all/aql/all.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-all/aql/onlyFirst.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-all/aql/onlyFirst.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-all/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-all/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-all/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-all/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-child-entities/aql/end.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-child-entities/aql/end.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-child-entities/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-child-entities/context.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-child-entities/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-child-entities/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-child-entities/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-child-entities/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-many/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-many/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-many/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-many/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-many/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-many/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-many/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-many/test.graphql -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-not-found/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-not-found/result.json -------------------------------------------------------------------------------- /spec/regression/logistics/tests/update-not-found/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/logistics/tests/update-not-found/test.graphql -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["allusers"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/model/country.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/model/country.graphqls -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/model/delivery.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/model/delivery.graphqls -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/model/handling-unit.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/model/handling-unit.graphqls -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/model/number-range.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/model/number-range.graphqls -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/model/secret.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/model/secret.graphqls -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/model/translation.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/model/translation.graphqls -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/test-data.json -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/aliases/aql/aliases.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/aliases/aql/aliases.aql -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/aliases/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/aliases/result.json -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/aliases/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/aliases/test.graphql -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/create/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/create/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/create/aql/query.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/create/aql/query.aql -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/create/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/create/result.json -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/create/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/create/test.graphql -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/query-all/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/query-all/result.json -------------------------------------------------------------------------------- /spec/regression/namespaced_logistics/tests/query-all/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/namespaced_logistics/tests/query-all/test.graphql -------------------------------------------------------------------------------- /spec/regression/no-root-entity-order-by/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["users"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/no-root-entity-order-by/model/model.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/no-root-entity-order-by/model/model.graphqls -------------------------------------------------------------------------------- /spec/regression/no-root-entity-order-by/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/no-root-entity-order-by/options.json -------------------------------------------------------------------------------- /spec/regression/no-root-entity-order-by/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/no-root-entity-order-by/test-data.json -------------------------------------------------------------------------------- /spec/regression/papers/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["admin"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/papers/model/i18n.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/model/i18n.de.yml -------------------------------------------------------------------------------- /spec/regression/papers/model/paper.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/model/paper.graphqls -------------------------------------------------------------------------------- /spec/regression/papers/model/user.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/model/user.graphqls -------------------------------------------------------------------------------- /spec/regression/papers/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/test-data.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/count-first/aql/countWithFirst.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/count-first/aql/countWithFirst.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/count-first/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/count-first/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/count-first/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/count-first/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/count/aql/count.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/count/aql/count.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/count/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/count/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/count/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/count/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/contains.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/contains.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/contains_empty_string.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/contains_empty_string.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/ends_with.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/ends_with.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/enums.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/enums.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/eq.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/eq.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/gt.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/gt.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/gte.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/gte.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/in.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/in.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/like.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/like.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/lt.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/lt.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/lte.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/lte.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/neq.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/neq.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/not_contains.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/not_contains.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/not_ends_with.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/not_ends_with.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/not_in.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/not_in.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/not_like.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/not_like.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/not_starts_with.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/not_starts_with.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/or.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/or.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/aql/starts_with.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/aql/starts_with.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/filter/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/filter/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/invalid-cursors/aql/invalidJSON.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/invalid-cursors/aql/invalidJSON.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/invalid-cursors/aql/nonObjectJSON.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/invalid-cursors/aql/nonObjectJSON.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/invalid-cursors/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/invalid-cursors/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/invalid-cursors/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/invalid-cursors/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/no-attributes/aql/onlyCursor.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/no-attributes/aql/onlyCursor.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/no-attributes/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/no-attributes/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/no-attributes/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/no-attributes/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-combinations/aql/after.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-combinations/aql/after.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-combinations/aql/all.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-combinations/aql/all.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-combinations/aql/first.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-combinations/aql/first.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-combinations/aql/skip.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-combinations/aql/skip.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-combinations/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-combinations/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-combinations/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-combinations/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-flexsearch-combinations/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-flexsearch/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "waitForArangoSearch": true 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-flexsearch/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-flexsearch/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination-flexsearch/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination-flexsearch/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination/aql/noPagesLeft.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination/aql/noPagesLeft.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination/aql/pagination.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination/aql/pagination.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/pagination/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/pagination/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/quantifiers/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/quantifiers/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/quantifiers/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/quantifiers/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/references/aql/references.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/references/aql/references.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/references/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/references/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/references/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/references/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/rollback-on-error/aql/create.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/rollback-on-error/aql/create.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/rollback-on-error/aql/queryOne.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/rollback-on-error/aql/queryOne.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/rollback-on-error/aql/queryTwo.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/rollback-on-error/aql/queryTwo.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/rollback-on-error/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/rollback-on-error/meta.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/rollback-on-error/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/rollback-on-error/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/rollback-on-error/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/rollback-on-error/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/serial-mutations/aql/a.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/serial-mutations/aql/a.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/serial-mutations/aql/b.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/serial-mutations/aql/b.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/serial-mutations/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/serial-mutations/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/serial-mutations/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/serial-mutations/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/simple-sorting/aql/sort.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/simple-sorting/aql/sort.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/simple-sorting/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/simple-sorting/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/simple-sorting/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/simple-sorting/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/aql/emptyPage.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/aql/emptyPage.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/aql/page1.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/aql/page1.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/aql/page1Desc.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/aql/page1Desc.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/aql/page2.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/aql/page2.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/aql/page2Desc.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/aql/page2Desc.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/sort-and-paginate/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sort-and-paginate/test.graphql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sorting/aql/boolean.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sorting/aql/boolean.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sorting/aql/string.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sorting/aql/string.aql -------------------------------------------------------------------------------- /spec/regression/papers/tests/sorting/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sorting/result.json -------------------------------------------------------------------------------- /spec/regression/papers/tests/sorting/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/papers/tests/sorting/test.graphql -------------------------------------------------------------------------------- /spec/regression/regression-suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/regression-suite.ts -------------------------------------------------------------------------------- /spec/regression/regressions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/regressions.spec.ts -------------------------------------------------------------------------------- /spec/regression/relation-delete-actions/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["users"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/relation-delete-actions/model/model.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/relation-delete-actions/model/model.graphqls -------------------------------------------------------------------------------- /spec/regression/relation-delete-actions/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/relation-delete-actions/test-data.json -------------------------------------------------------------------------------- /spec/regression/relation-delete-actions/tests/cascade/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/relation-delete-actions/tests/cascade/result.json -------------------------------------------------------------------------------- /spec/regression/relation-delete-actions/tests/cascade/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/relation-delete-actions/tests/cascade/test.graphql -------------------------------------------------------------------------------- /spec/regression/relation-delete-actions/tests/restrict/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/relation-delete-actions/tests/restrict/result.json -------------------------------------------------------------------------------- /spec/regression/root-fields/default-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/default-context.json -------------------------------------------------------------------------------- /spec/regression/root-fields/model/model.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/model/model.graphqls -------------------------------------------------------------------------------- /spec/regression/root-fields/model/permission-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/model/permission-profiles.json -------------------------------------------------------------------------------- /spec/regression/root-fields/test-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/test-data.json -------------------------------------------------------------------------------- /spec/regression/root-fields/tests/root-and-parent/aql/test.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/tests/root-and-parent/aql/test.aql -------------------------------------------------------------------------------- /spec/regression/root-fields/tests/root-and-parent/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/tests/root-and-parent/result.json -------------------------------------------------------------------------------- /spec/regression/root-fields/tests/root-and-parent/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/tests/root-and-parent/test.graphql -------------------------------------------------------------------------------- /spec/regression/root-fields/tests/root-with-collect/aql/q.aql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/tests/root-with-collect/aql/q.aql -------------------------------------------------------------------------------- /spec/regression/root-fields/tests/root-with-collect/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/root-fields/tests/root-with-collect/result.json -------------------------------------------------------------------------------- /spec/regression/traversal-performance/default-context.json: -------------------------------------------------------------------------------- 1 | { 2 | "authRoles": ["user"] 3 | } 4 | -------------------------------------------------------------------------------- /spec/regression/traversal-performance/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/traversal-performance/meta.json -------------------------------------------------------------------------------- /spec/regression/traversal-performance/model/model.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/traversal-performance/model/model.graphqls -------------------------------------------------------------------------------- /spec/regression/traversal-performance/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/traversal-performance/test-data.ts -------------------------------------------------------------------------------- /spec/regression/traversal-performance/tests/collect/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/regression/traversal-performance/tests/collect/result.json -------------------------------------------------------------------------------- /spec/schema-generation/create-input-type-generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema-generation/create-input-type-generator.spec.ts -------------------------------------------------------------------------------- /spec/schema-generation/createdat-updatedat-modification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema-generation/createdat-updatedat-modification.spec.ts -------------------------------------------------------------------------------- /spec/schema-generation/enum-type-generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema-generation/enum-type-generator.spec.ts -------------------------------------------------------------------------------- /spec/schema-generation/memorize-decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema-generation/memorize-decorator.spec.ts -------------------------------------------------------------------------------- /spec/schema-generation/order-by-enum-generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema-generation/order-by-enum-generator.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/business-object.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/business-object.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/collect-validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/collect-validation.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/helpers.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/illegal-enum-values.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/illegal-enum-values.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/indices-validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/indices-validator.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/indices.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/indices.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/key-field-validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/key-field-validator.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/modules-validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/modules-validator.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/parent-field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/parent-field.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/relations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/relations.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/root-field.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/root-field.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/suppress.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/suppress.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/ttl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/ttl.spec.ts -------------------------------------------------------------------------------- /spec/schema/ast-validation-modules/undefined-types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/ast-validation-modules/undefined-types.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/date-time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/date-time.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/fixed-point-decimals.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/fixed-point-decimals.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/int53.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/int53.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/local-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/local-date.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/local-time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/local-time.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/offset-date-time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/offset-date-time.spec.ts -------------------------------------------------------------------------------- /spec/schema/scalars/string-map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/scalars/string-map.spec.ts -------------------------------------------------------------------------------- /spec/schema/schema-builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/schema-builder.spec.ts -------------------------------------------------------------------------------- /spec/schema/source-validation-modules/check-json-syntax.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/source-validation-modules/check-json-syntax.spec.ts -------------------------------------------------------------------------------- /spec/schema/source-validation-modules/check-yaml-syntax.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/source-validation-modules/check-yaml-syntax.spec.ts -------------------------------------------------------------------------------- /spec/schema/source-validation-modules/graphql-rules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/source-validation-modules/graphql-rules.spec.ts -------------------------------------------------------------------------------- /spec/schema/source-validation-modules/sidecar-schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/source-validation-modules/sidecar-schema.spec.ts -------------------------------------------------------------------------------- /spec/schema/source-validation-modules/yaml-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/schema/source-validation-modules/yaml-parser.spec.ts -------------------------------------------------------------------------------- /spec/utils/group-by-equivalence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/utils/group-by-equivalence.spec.ts -------------------------------------------------------------------------------- /spec/utils/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/utils/utils.spec.ts -------------------------------------------------------------------------------- /spec/utils/visitor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/spec/utils/visitor.spec.ts -------------------------------------------------------------------------------- /src/authorization/auth-basics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/auth-basics.ts -------------------------------------------------------------------------------- /src/authorization/execution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/execution.ts -------------------------------------------------------------------------------- /src/authorization/move-errors-to-output-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/move-errors-to-output-nodes.ts -------------------------------------------------------------------------------- /src/authorization/permission-descriptors-in-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/permission-descriptors-in-model.ts -------------------------------------------------------------------------------- /src/authorization/permission-descriptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/permission-descriptors.ts -------------------------------------------------------------------------------- /src/authorization/transformers/affected-field-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/affected-field-info.ts -------------------------------------------------------------------------------- /src/authorization/transformers/create-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/create-entities.ts -------------------------------------------------------------------------------- /src/authorization/transformers/create-entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/create-entity.ts -------------------------------------------------------------------------------- /src/authorization/transformers/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/entities.ts -------------------------------------------------------------------------------- /src/authorization/transformers/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/field.ts -------------------------------------------------------------------------------- /src/authorization/transformers/follow-edge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/follow-edge.ts -------------------------------------------------------------------------------- /src/authorization/transformers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/index.ts -------------------------------------------------------------------------------- /src/authorization/transformers/traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/traversal.ts -------------------------------------------------------------------------------- /src/authorization/transformers/update-delete-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/authorization/transformers/update-delete-entities.ts -------------------------------------------------------------------------------- /src/config/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/config/global.ts -------------------------------------------------------------------------------- /src/config/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/config/interfaces.ts -------------------------------------------------------------------------------- /src/config/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/config/logging.ts -------------------------------------------------------------------------------- /src/config/parsed-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/config/parsed-project.ts -------------------------------------------------------------------------------- /src/cruddl-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/cruddl-version.ts -------------------------------------------------------------------------------- /src/database/arangodb/aql-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/aql-generator.ts -------------------------------------------------------------------------------- /src/database/arangodb/aql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/aql.ts -------------------------------------------------------------------------------- /src/database/arangodb/arango-basics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/arango-basics.ts -------------------------------------------------------------------------------- /src/database/arangodb/arangodb-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/arangodb-adapter.ts -------------------------------------------------------------------------------- /src/database/arangodb/arangojs-instrumentation/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/arangojs-instrumentation/config.ts -------------------------------------------------------------------------------- /src/database/arangodb/cancellation-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/cancellation-manager.ts -------------------------------------------------------------------------------- /src/database/arangodb/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/config.ts -------------------------------------------------------------------------------- /src/database/arangodb/error-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/error-codes.ts -------------------------------------------------------------------------------- /src/database/arangodb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/index.ts -------------------------------------------------------------------------------- /src/database/arangodb/revision-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/revision-helper.ts -------------------------------------------------------------------------------- /src/database/arangodb/schema-migration/analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/schema-migration/analyzer.ts -------------------------------------------------------------------------------- /src/database/arangodb/schema-migration/arango-search-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/schema-migration/arango-search-helpers.ts -------------------------------------------------------------------------------- /src/database/arangodb/schema-migration/index-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/schema-migration/index-helpers.ts -------------------------------------------------------------------------------- /src/database/arangodb/schema-migration/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/schema-migration/migrations.ts -------------------------------------------------------------------------------- /src/database/arangodb/schema-migration/performer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/schema-migration/performer.ts -------------------------------------------------------------------------------- /src/database/arangodb/traversal-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/traversal-helpers.ts -------------------------------------------------------------------------------- /src/database/arangodb/version-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/arangodb/version-helper.ts -------------------------------------------------------------------------------- /src/database/database-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/database-adapter.ts -------------------------------------------------------------------------------- /src/database/inmemory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/inmemory/index.ts -------------------------------------------------------------------------------- /src/database/inmemory/inmemory-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/inmemory/inmemory-adapter.ts -------------------------------------------------------------------------------- /src/database/inmemory/inmemory-basics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/inmemory/inmemory-basics.ts -------------------------------------------------------------------------------- /src/database/inmemory/js-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/inmemory/js-generator.ts -------------------------------------------------------------------------------- /src/database/inmemory/js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/inmemory/js.ts -------------------------------------------------------------------------------- /src/database/like-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/database/like-helpers.ts -------------------------------------------------------------------------------- /src/execution/execution-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/execution/execution-options.ts -------------------------------------------------------------------------------- /src/execution/execution-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/execution/execution-result.ts -------------------------------------------------------------------------------- /src/execution/operation-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/execution/operation-resolver.ts -------------------------------------------------------------------------------- /src/execution/runtime-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/execution/runtime-errors.ts -------------------------------------------------------------------------------- /src/execution/schema-executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/execution/schema-executor.ts -------------------------------------------------------------------------------- /src/execution/transaction-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/execution/transaction-error.ts -------------------------------------------------------------------------------- /src/graphql/argument-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/argument-values.ts -------------------------------------------------------------------------------- /src/graphql/field-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/field-collection.ts -------------------------------------------------------------------------------- /src/graphql/is-comment-only-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/is-comment-only-source.ts -------------------------------------------------------------------------------- /src/graphql/language-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/language-utils.ts -------------------------------------------------------------------------------- /src/graphql/operation-based-resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/operation-based-resolvers.ts -------------------------------------------------------------------------------- /src/graphql/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/operations.ts -------------------------------------------------------------------------------- /src/graphql/pretty-print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/pretty-print.ts -------------------------------------------------------------------------------- /src/graphql/query-distiller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/query-distiller.ts -------------------------------------------------------------------------------- /src/graphql/schema-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/schema-utils.ts -------------------------------------------------------------------------------- /src/graphql/value-from-ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/value-from-ast.ts -------------------------------------------------------------------------------- /src/graphql/value-to-ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/graphql/value-to-ast.ts -------------------------------------------------------------------------------- /src/meta-schema/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/meta-schema/constants.ts -------------------------------------------------------------------------------- /src/meta-schema/meta-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/meta-schema/meta-schema.ts -------------------------------------------------------------------------------- /src/model/change-set/apply-change-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/change-set/apply-change-set.ts -------------------------------------------------------------------------------- /src/model/change-set/change-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/change-set/change-set.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-business-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-business-object.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-calc-mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-calc-mutations.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-collect-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-collect-field.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-default-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-default-value.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-enum-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-enum-type.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-field-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-field-type.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-field.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-flex-search-on-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-flex-search-on-field.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-flex-search-on-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-flex-search-on-type.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-indices.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-key-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-key-field.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-model.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-object-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-object-type.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-reference.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-relation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-relation.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-root-entity-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-root-entity-type.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-ttl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-ttl.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/check-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/check-type.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/describe-module-specification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/describe-module-specification.ts -------------------------------------------------------------------------------- /src/model/compatibility-check/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/compatibility-check/utils.ts -------------------------------------------------------------------------------- /src/model/config/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/billing.ts -------------------------------------------------------------------------------- /src/model/config/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/field.ts -------------------------------------------------------------------------------- /src/model/config/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/i18n.ts -------------------------------------------------------------------------------- /src/model/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/index.ts -------------------------------------------------------------------------------- /src/model/config/indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/indices.ts -------------------------------------------------------------------------------- /src/model/config/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/model.ts -------------------------------------------------------------------------------- /src/model/config/module-specification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/module-specification.ts -------------------------------------------------------------------------------- /src/model/config/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/module.ts -------------------------------------------------------------------------------- /src/model/config/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/permissions.ts -------------------------------------------------------------------------------- /src/model/config/time-to-live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/time-to-live.ts -------------------------------------------------------------------------------- /src/model/config/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/config/type.ts -------------------------------------------------------------------------------- /src/model/create-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/create-model.ts -------------------------------------------------------------------------------- /src/model/implementation/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/billing.ts -------------------------------------------------------------------------------- /src/model/implementation/built-in-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/built-in-types.ts -------------------------------------------------------------------------------- /src/model/implementation/child-entity-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/child-entity-type.ts -------------------------------------------------------------------------------- /src/model/implementation/collect-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/collect-path.ts -------------------------------------------------------------------------------- /src/model/implementation/entity-extension-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/entity-extension-type.ts -------------------------------------------------------------------------------- /src/model/implementation/enum-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/enum-type.ts -------------------------------------------------------------------------------- /src/model/implementation/field-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/field-path.ts -------------------------------------------------------------------------------- /src/model/implementation/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/field.ts -------------------------------------------------------------------------------- /src/model/implementation/flex-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/flex-search.ts -------------------------------------------------------------------------------- /src/model/implementation/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/i18n.ts -------------------------------------------------------------------------------- /src/model/implementation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/index.ts -------------------------------------------------------------------------------- /src/model/implementation/indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/indices.ts -------------------------------------------------------------------------------- /src/model/implementation/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/model.ts -------------------------------------------------------------------------------- /src/model/implementation/modules/base-module-specification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/modules/base-module-specification.ts -------------------------------------------------------------------------------- /src/model/implementation/modules/expression-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/modules/expression-parser.ts -------------------------------------------------------------------------------- /src/model/implementation/modules/field-module-specification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/modules/field-module-specification.ts -------------------------------------------------------------------------------- /src/model/implementation/modules/module-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/modules/module-declaration.ts -------------------------------------------------------------------------------- /src/model/implementation/modules/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/modules/patterns.ts -------------------------------------------------------------------------------- /src/model/implementation/modules/type-module-specification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/modules/type-module-specification.ts -------------------------------------------------------------------------------- /src/model/implementation/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/namespace.ts -------------------------------------------------------------------------------- /src/model/implementation/object-type-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/object-type-base.ts -------------------------------------------------------------------------------- /src/model/implementation/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/order.ts -------------------------------------------------------------------------------- /src/model/implementation/permission-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/permission-profile.ts -------------------------------------------------------------------------------- /src/model/implementation/relation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/relation.ts -------------------------------------------------------------------------------- /src/model/implementation/roles-specifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/roles-specifier.ts -------------------------------------------------------------------------------- /src/model/implementation/root-entity-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/root-entity-type.ts -------------------------------------------------------------------------------- /src/model/implementation/scalar-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/scalar-type.ts -------------------------------------------------------------------------------- /src/model/implementation/time-to-live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/time-to-live.ts -------------------------------------------------------------------------------- /src/model/implementation/type-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/type-base.ts -------------------------------------------------------------------------------- /src/model/implementation/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/type.ts -------------------------------------------------------------------------------- /src/model/implementation/value-object-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/implementation/value-object-type.ts -------------------------------------------------------------------------------- /src/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/index.ts -------------------------------------------------------------------------------- /src/model/parse-billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/parse-billing.ts -------------------------------------------------------------------------------- /src/model/parse-i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/parse-i18n.ts -------------------------------------------------------------------------------- /src/model/parse-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/parse-modules.ts -------------------------------------------------------------------------------- /src/model/parse-ttl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/parse-ttl.ts -------------------------------------------------------------------------------- /src/model/utils/emedding-entity-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/utils/emedding-entity-types.ts -------------------------------------------------------------------------------- /src/model/utils/recursive-cascade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/utils/recursive-cascade.ts -------------------------------------------------------------------------------- /src/model/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/index.ts -------------------------------------------------------------------------------- /src/model/validation/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/location.ts -------------------------------------------------------------------------------- /src/model/validation/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/message.ts -------------------------------------------------------------------------------- /src/model/validation/quick-fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/quick-fix.ts -------------------------------------------------------------------------------- /src/model/validation/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/result.ts -------------------------------------------------------------------------------- /src/model/validation/suppress/is-suppressed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/suppress/is-suppressed.ts -------------------------------------------------------------------------------- /src/model/validation/suppress/message-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/suppress/message-codes.ts -------------------------------------------------------------------------------- /src/model/validation/suppress/quick-fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/suppress/quick-fix.ts -------------------------------------------------------------------------------- /src/model/validation/suppress/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/suppress/utils.ts -------------------------------------------------------------------------------- /src/model/validation/validation-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/model/validation/validation-context.ts -------------------------------------------------------------------------------- /src/project/invalid-project-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/project/invalid-project-error.ts -------------------------------------------------------------------------------- /src/project/project-from-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/project/project-from-fs.ts -------------------------------------------------------------------------------- /src/project/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/project/project.ts -------------------------------------------------------------------------------- /src/project/select-modules-in-sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/project/select-modules-in-sources.ts -------------------------------------------------------------------------------- /src/project/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/project/source.ts -------------------------------------------------------------------------------- /src/project/time-to-live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/project/time-to-live.ts -------------------------------------------------------------------------------- /src/query-tree/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/base.ts -------------------------------------------------------------------------------- /src/query-tree/billing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/billing.ts -------------------------------------------------------------------------------- /src/query-tree/child-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/child-entities.ts -------------------------------------------------------------------------------- /src/query-tree/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/errors.ts -------------------------------------------------------------------------------- /src/query-tree/flex-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/flex-search.ts -------------------------------------------------------------------------------- /src/query-tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/index.ts -------------------------------------------------------------------------------- /src/query-tree/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/lists.ts -------------------------------------------------------------------------------- /src/query-tree/literals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/literals.ts -------------------------------------------------------------------------------- /src/query-tree/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/mutations.ts -------------------------------------------------------------------------------- /src/query-tree/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/objects.ts -------------------------------------------------------------------------------- /src/query-tree/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/operators.ts -------------------------------------------------------------------------------- /src/query-tree/pre-exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/pre-exec.ts -------------------------------------------------------------------------------- /src/query-tree/quantifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/quantifiers.ts -------------------------------------------------------------------------------- /src/query-tree/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/queries.ts -------------------------------------------------------------------------------- /src/query-tree/type-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/type-check.ts -------------------------------------------------------------------------------- /src/query-tree/utils/extract-variable-assignments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/utils/extract-variable-assignments.ts -------------------------------------------------------------------------------- /src/query-tree/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/utils/index.ts -------------------------------------------------------------------------------- /src/query-tree/utils/simplify-booleans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/utils/simplify-booleans.ts -------------------------------------------------------------------------------- /src/query-tree/utils/static-evaluation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/utils/static-evaluation.ts -------------------------------------------------------------------------------- /src/query-tree/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/validation.ts -------------------------------------------------------------------------------- /src/query-tree/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/variables.ts -------------------------------------------------------------------------------- /src/query-tree/visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/query-tree/visitor.ts -------------------------------------------------------------------------------- /src/schema-generation/billing-type-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/billing-type-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/create-input-types/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/create-input-types/generator.ts -------------------------------------------------------------------------------- /src/schema-generation/create-input-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/create-input-types/index.ts -------------------------------------------------------------------------------- /src/schema-generation/create-input-types/input-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/create-input-types/input-fields.ts -------------------------------------------------------------------------------- /src/schema-generation/create-input-types/input-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/create-input-types/input-types.ts -------------------------------------------------------------------------------- /src/schema-generation/create-input-types/relation-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/create-input-types/relation-fields.ts -------------------------------------------------------------------------------- /src/schema-generation/delete-all-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/delete-all-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/enum-type-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/enum-type-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/field-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/field-nodes.ts -------------------------------------------------------------------------------- /src/schema-generation/field-path-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/field-path-node.ts -------------------------------------------------------------------------------- /src/schema-generation/filter-augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/filter-augmentation.ts -------------------------------------------------------------------------------- /src/schema-generation/filter-input-types/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/filter-input-types/constants.ts -------------------------------------------------------------------------------- /src/schema-generation/filter-input-types/filter-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/filter-input-types/filter-fields.ts -------------------------------------------------------------------------------- /src/schema-generation/filter-input-types/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/filter-input-types/generator.ts -------------------------------------------------------------------------------- /src/schema-generation/filter-input-types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generator'; 2 | -------------------------------------------------------------------------------- /src/schema-generation/flex-search-filter-input-types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './generator'; 2 | -------------------------------------------------------------------------------- /src/schema-generation/flex-search-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/flex-search-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/flex-search-post-filter-augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/flex-search-post-filter-augmentation.ts -------------------------------------------------------------------------------- /src/schema-generation/graphql-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/graphql-errors.ts -------------------------------------------------------------------------------- /src/schema-generation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/index.ts -------------------------------------------------------------------------------- /src/schema-generation/limit-augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/limit-augmentation.ts -------------------------------------------------------------------------------- /src/schema-generation/list-augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/list-augmentation.ts -------------------------------------------------------------------------------- /src/schema-generation/meta-type-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/meta-type-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/mutation-type-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/mutation-type-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/order-by-and-pagination-augmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/order-by-and-pagination-augmentation.ts -------------------------------------------------------------------------------- /src/schema-generation/order-by-enum-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/order-by-enum-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/output-type-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/output-type-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/query-node-object-type/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-node-object-type/context.ts -------------------------------------------------------------------------------- /src/schema-generation/query-node-object-type/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-node-object-type/convert.ts -------------------------------------------------------------------------------- /src/schema-generation/query-node-object-type/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-node-object-type/definition.ts -------------------------------------------------------------------------------- /src/schema-generation/query-node-object-type/field-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-node-object-type/field-resolver.ts -------------------------------------------------------------------------------- /src/schema-generation/query-node-object-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-node-object-type/index.ts -------------------------------------------------------------------------------- /src/schema-generation/query-node-object-type/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-node-object-type/utils.ts -------------------------------------------------------------------------------- /src/schema-generation/query-type-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/query-type-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/root-field-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/root-field-helper.ts -------------------------------------------------------------------------------- /src/schema-generation/root-types-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/root-types-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/schema-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/schema-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/typed-input-object-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/typed-input-object-type.ts -------------------------------------------------------------------------------- /src/schema-generation/unique-field-arguments-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/unique-field-arguments-generator.ts -------------------------------------------------------------------------------- /src/schema-generation/update-input-types/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/update-input-types/generator.ts -------------------------------------------------------------------------------- /src/schema-generation/update-input-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/update-input-types/index.ts -------------------------------------------------------------------------------- /src/schema-generation/update-input-types/input-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/update-input-types/input-fields.ts -------------------------------------------------------------------------------- /src/schema-generation/update-input-types/input-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/update-input-types/input-types.ts -------------------------------------------------------------------------------- /src/schema-generation/update-input-types/relation-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/update-input-types/relation-fields.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/billing-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/billing-nodes.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/entities-by-unique-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/entities-by-unique-field.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/filtering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/filtering.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/flex-search-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/flex-search-utils.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/input-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/input-types.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/map.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/pagination.ts -------------------------------------------------------------------------------- /src/schema-generation/utils/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema-generation/utils/relations.ts -------------------------------------------------------------------------------- /src/schema/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/constants.ts -------------------------------------------------------------------------------- /src/schema/graphql-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/graphql-base.ts -------------------------------------------------------------------------------- /src/schema/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/names.ts -------------------------------------------------------------------------------- /src/schema/preparation/ast-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/preparation/ast-validator.ts -------------------------------------------------------------------------------- /src/schema/preparation/transformation-pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/preparation/transformation-pipeline.ts -------------------------------------------------------------------------------- /src/schema/scalars/date-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/date-time.ts -------------------------------------------------------------------------------- /src/schema/scalars/fixed-point-decimals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/fixed-point-decimals.ts -------------------------------------------------------------------------------- /src/schema/scalars/int53.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/int53.ts -------------------------------------------------------------------------------- /src/schema/scalars/local-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/local-date.ts -------------------------------------------------------------------------------- /src/schema/scalars/local-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/local-time.ts -------------------------------------------------------------------------------- /src/schema/scalars/offset-date-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/offset-date-time.ts -------------------------------------------------------------------------------- /src/schema/scalars/string-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/scalars/string-map.ts -------------------------------------------------------------------------------- /src/schema/schema-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/schema-builder.ts -------------------------------------------------------------------------------- /src/schema/schema-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/schema/schema-utils.ts -------------------------------------------------------------------------------- /src/typings/json-lint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/typings/json-lint.d.ts -------------------------------------------------------------------------------- /src/typings/json-source-map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/typings/json-source-map.d.ts -------------------------------------------------------------------------------- /src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/colors.ts -------------------------------------------------------------------------------- /src/utils/error-with-cause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/error-with-cause.ts -------------------------------------------------------------------------------- /src/utils/group-by-equivalence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/group-by-equivalence.ts -------------------------------------------------------------------------------- /src/utils/util-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/util-types.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /src/utils/visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/visitor.ts -------------------------------------------------------------------------------- /src/utils/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/src/utils/watch.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AEB-labs/cruddl/HEAD/tsconfig.json --------------------------------------------------------------------------------