Skip to content

Commit 64e2fc5

Browse files
committed
address GQL -> Graphql
1 parent fe21d61 commit 64e2fc5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cylc/flow/network/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ class ResponseDict(TypedDict, total=False):
6868
different versions of Cylc 8.
6969
"""
7070
data: object
71-
"""For most Cylc commands that issue GQL mutations, the data field will
72-
look like:
71+
"""For most Cylc commands that issue GraphQL mutations, the data field
72+
will look like:
7373
data: {
7474
<mutationName1>: {
7575
result: [

cylc/flow/network/schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -878,11 +878,11 @@ class Meta:
878878
v: k
879879
for k, v in RUNTIME_CFG_MAP_TO_FIELD.items()
880880
}
881-
"""Map Pb/GQL Runtime fields' names to workflow config setting names."""
881+
"""Map Pb/GraphQL Runtime fields' names to workflow config setting names."""
882882

883883

884884
def runtime_schema_to_cfg(runtime: dict) -> dict:
885-
"""Covert GQL Runtime field names to workflow config setting names and
885+
"""Covert GraphQL Runtime field names to workflow config setting names and
886886
perform any necessary processing on the values."""
887887
# We have to manually lowercase the run_mode field because we don't define
888888
# a proper schema for BroadcastSetting (it's just GenericScalar) so

0 commit comments

Comments
 (0)