├── .editorconfig ├── .gitignore ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── text ├── 0001-rfc-process.rst ├── 0002-edgedb-release-process.rst ├── 1000-migrations.rst ├── 1001-edgedb-server-control.rst ├── 1002-optionality-qualifier.rst ├── 1003-cli-naming.rst ├── 1004-transactions-api.rst ├── 1005-edgedb-project.rst ├── 1006-simplified-cli.rst ├── 1007-protocol-v1.rst ├── 1008-tls-and-alpn.rst ├── 1009-group.rst ├── 1010-global-vars.rst ├── 1011-object-level-security.rst ├── 1012-range-types.rst ├── 1013-datetime-arithmetic.rst ├── 1015-full-text-search.rst ├── 1016-extension-control.rst ├── 1017-abstract-index.rst ├── 1018-extending-indexes.rst ├── 1019-index-fallback.rst ├── 1020-triggers.rst ├── 1021-rewrites.rst ├── 1022-freetypes.rst ├── 1023-splats.rst ├── 1025-branches.rst ├── 1026-net-module.rst ├── 1027-no-factoring.rst ├── 1028-cli-hooks.rst ├── 1029-rbac.rst ├── 1042-fastapi.rst ├── 1043-ext-auth-otc.rst ├── EdgeDB-Execute.png ├── EdgeDB-Protocol-v0.png ├── EdgeDB-Protocol-v1.png └── EdgeDB-TLS-Benchmark.png └── update_index.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /.helix 3 | *~ 4 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /text/0001-rfc-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/0001-rfc-process.rst -------------------------------------------------------------------------------- /text/0002-edgedb-release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/0002-edgedb-release-process.rst -------------------------------------------------------------------------------- /text/1000-migrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1000-migrations.rst -------------------------------------------------------------------------------- /text/1001-edgedb-server-control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1001-edgedb-server-control.rst -------------------------------------------------------------------------------- /text/1002-optionality-qualifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1002-optionality-qualifier.rst -------------------------------------------------------------------------------- /text/1003-cli-naming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1003-cli-naming.rst -------------------------------------------------------------------------------- /text/1004-transactions-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1004-transactions-api.rst -------------------------------------------------------------------------------- /text/1005-edgedb-project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1005-edgedb-project.rst -------------------------------------------------------------------------------- /text/1006-simplified-cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1006-simplified-cli.rst -------------------------------------------------------------------------------- /text/1007-protocol-v1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1007-protocol-v1.rst -------------------------------------------------------------------------------- /text/1008-tls-and-alpn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1008-tls-and-alpn.rst -------------------------------------------------------------------------------- /text/1009-group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1009-group.rst -------------------------------------------------------------------------------- /text/1010-global-vars.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1010-global-vars.rst -------------------------------------------------------------------------------- /text/1011-object-level-security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1011-object-level-security.rst -------------------------------------------------------------------------------- /text/1012-range-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1012-range-types.rst -------------------------------------------------------------------------------- /text/1013-datetime-arithmetic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1013-datetime-arithmetic.rst -------------------------------------------------------------------------------- /text/1015-full-text-search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1015-full-text-search.rst -------------------------------------------------------------------------------- /text/1016-extension-control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1016-extension-control.rst -------------------------------------------------------------------------------- /text/1017-abstract-index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1017-abstract-index.rst -------------------------------------------------------------------------------- /text/1018-extending-indexes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1018-extending-indexes.rst -------------------------------------------------------------------------------- /text/1019-index-fallback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1019-index-fallback.rst -------------------------------------------------------------------------------- /text/1020-triggers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1020-triggers.rst -------------------------------------------------------------------------------- /text/1021-rewrites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1021-rewrites.rst -------------------------------------------------------------------------------- /text/1022-freetypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1022-freetypes.rst -------------------------------------------------------------------------------- /text/1023-splats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1023-splats.rst -------------------------------------------------------------------------------- /text/1025-branches.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1025-branches.rst -------------------------------------------------------------------------------- /text/1026-net-module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1026-net-module.rst -------------------------------------------------------------------------------- /text/1027-no-factoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1027-no-factoring.rst -------------------------------------------------------------------------------- /text/1028-cli-hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1028-cli-hooks.rst -------------------------------------------------------------------------------- /text/1029-rbac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1029-rbac.rst -------------------------------------------------------------------------------- /text/1042-fastapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1042-fastapi.rst -------------------------------------------------------------------------------- /text/1043-ext-auth-otc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/1043-ext-auth-otc.rst -------------------------------------------------------------------------------- /text/EdgeDB-Execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/EdgeDB-Execute.png -------------------------------------------------------------------------------- /text/EdgeDB-Protocol-v0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/EdgeDB-Protocol-v0.png -------------------------------------------------------------------------------- /text/EdgeDB-Protocol-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/EdgeDB-Protocol-v1.png -------------------------------------------------------------------------------- /text/EdgeDB-TLS-Benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/text/EdgeDB-TLS-Benchmark.png -------------------------------------------------------------------------------- /update_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geldata/rfcs/HEAD/update_index.py --------------------------------------------------------------------------------