Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions spectaql/config_saas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,17 @@ introspection:
#

# File that contains your metadata data in JS module export, or JSON format
# metadataFile: path/to/metadata.js[on]
# Items marked with `documentation: { undocumented: true }` will be hidden
# from the rendered output (combined with hide*WithUndocumentedReturnType and
# hideUnusedTypes options below).
metadataFile: spectaql/metadata-saas.json

# The path to a key from which to read the documentation-related metadata at each level of your metadata file.
# Defaults to 'documentation', but in case you use a different name, or have a complex/nested metadata structure, you can
# specify it here.
#
# Default: documentation
# metadatasReadPath: documentation
metadatasReadPath: documentation

# The metadata that was just read from the above key path will be woven into your Introspection Query results.
# This option specifies the key path where that data will be written at each level.
Expand All @@ -223,7 +226,7 @@ introspection:
# specify it here.
#
# Default: documentation
# metadatasWritePath: documentation
metadatasWritePath: documentation

#
#
Expand All @@ -240,13 +243,13 @@ introspection:
# specify it here.
#
# Default: documentation
# metadatasPath: documentation
metadatasPath: documentation

# Whether or not to look for and use metadata in your data. If turned off, metadata will be ignored
# even if it's there
#
# Default: true
# metadatas: true
metadatas: true

#
#
Expand Down
76 changes: 76 additions & 0 deletions spectaql/metadata-saas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"OBJECT": {
"Query": {
"fields": {
"categoryTree": {
"documentation": { "undocumented": true }
},
"navigation": {
"documentation": { "undocumented": true }
},
"searchCategory": {
"documentation": { "undocumented": true }
},
"recommendationsByUnitIds": {
"documentation": { "undocumented": true }
},
"payByLinkOrder": {
"documentation": { "undocumented": true }
}
}
},
"Mutation": {
"fields": {
"completePayByLinkPayment": {
"documentation": { "undocumented": true }
}
}
},
"CategoryTreeView": {
"documentation": { "undocumented": true }
},
"CategoryNavigationView": {
"documentation": { "undocumented": true }
},
"CategoryProductView": {
"documentation": { "undocumented": true }
},
"SearchCategoryResultPage": {
"documentation": { "undocumented": true }
},
"CategoryMetaTags": {
"documentation": { "undocumented": true }
},
"CategoryImage": {
"documentation": { "undocumented": true }
},
"PageInfo": {
"documentation": { "undocumented": true }
},
"PayByLinkOrder": {
"documentation": { "undocumented": true }
},
"PayByLinkOrderAddress": {
"documentation": { "undocumented": true }
},
"PayByLinkOrderItem": {
"documentation": { "undocumented": true }
},
"PayByLinkOrderTotals": {
"documentation": { "undocumented": true }
},
"CompletePayByLinkPaymentOutput": {
"documentation": { "undocumented": true }
}
},
"INPUT_OBJECT": {
"PayByLinkInput": {
"documentation": { "undocumented": true }
}
},
"INTERFACE": {
"CategoryViewV2": {
"documentation": { "undocumented": true }
}
}
}
Loading
Loading