We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1ea7c0 commit 1899a30Copy full SHA for 1899a30
graphqldb/adapter.py
@@ -68,6 +68,11 @@ def parse_gql_type(type_info: TypeInfo) -> Field:
68
# TODO(cancan101): figure out if we want to map this to UUID, int, etc
69
# This should probably be an API-level setting
70
return String()
71
+ elif name == "IRI":
72
+ # TODO(cancan101): figure out if we want to map this to Python
73
+ # native type, string, etc.
74
+ # This should probably be an API-level setting
75
+ return String()
76
elif name == "Int":
77
return Integer()
78
elif name == "Float":
0 commit comments