memgraph/tests/e2e/graphql/workloads.yaml
gvolfing 210bea83d4
Add GraphQL transpilation compatibility (#1018)
* Add callable mappings feature
* Implement mgps.validate (void procedure)
* Make '_' a valid variable name
2023-07-31 14:48:12 +02:00

36 lines
878 B
YAML

args: &args
- "--bolt-port"
- "7687"
- "--log-level"
- "TRACE"
- "--query-callable-mappings-path"
- "graphql/callable_alias_mapping.json"
in_memory_cluster: &in_memory_cluster
cluster:
main:
args: *args
log_file: "graphql-e2e.log"
setup_queries: []
validation_queries: []
disk_cluster: &disk_cluster
cluster:
main:
args: *args
log_file: "graphql-e2e.log"
setup_queries: ["STORAGE MODE ON_DISK_TRANSACTIONAL"]
validation_queries: []
workloads:
- name: "GraphQL crud"
binary: "tests/e2e/pytest_runner.sh"
proc: "tests/e2e/graphql/temporary_procedures/"
args: ["graphql/graphql_crud.py"]
<<: *in_memory_cluster
- name: "Disk GraphQL crud"
binary: "tests/e2e/pytest_runner.sh"
proc: "tests/e2e/graphql/temporary_procedures/"
args: ["graphql/graphql_crud.py"]
<<: *disk_cluster