Summary
The file internal/catalogd/graphql/sample-queries.txt contains several GraphQL query examples that reference the root field name bundles, but the dynamic schema generator derives the field name from the schema name (olm.bundle → olmbundles). As written, those sample queries will fail for users.
Affected lines (approx.)
- Line 82:
bundles(limit: 5) {
- Line 121:
bundles(limit: 20) {
- Line 145:
bundles(limit: 10) {
- Line 163:
bundles(limit: 10) {
Suggested fix
Replace all occurrences of bundles( with olmbundles( in internal/catalogd/graphql/sample-queries.txt.
References
Reported by @grokspawn.
Summary
The file
internal/catalogd/graphql/sample-queries.txtcontains several GraphQL query examples that reference the root field namebundles, but the dynamic schema generator derives the field name from the schema name (olm.bundle→olmbundles). As written, those sample queries will fail for users.Affected lines (approx.)
bundles(limit: 5) {bundles(limit: 20) {bundles(limit: 10) {bundles(limit: 10) {Suggested fix
Replace all occurrences of
bundles(witholmbundles(ininternal/catalogd/graphql/sample-queries.txt.References
Reported by @grokspawn.