Fix for schema-stitching issues at service startup
Some checks failed
Docker Image CI / build (push) Has been cancelled

This commit is contained in:
2026-03-26 21:02:31 -04:00
parent b753481754
commit 2e31f6cf49
3 changed files with 100 additions and 231 deletions

View File

@@ -151,7 +151,7 @@ export const typeDefs = gql`
}
# Weekly pull list item (from League of Comic Geeks)
type PullListItem {
type MetadataPullListItem {
name: String
publisher: String
url: String
@@ -165,13 +165,13 @@ export const typeDefs = gql`
}
# Paginated pull list response
type PullListResponse {
result: [PullListItem!]!
meta: PaginationMeta!
type MetadataPullListResponse {
result: [MetadataPullListItem!]!
meta: MetadataPaginationMeta!
}
# Pagination metadata
type PaginationMeta {
type MetadataPaginationMeta {
currentPage: Int!
totalPages: Int!
pageSize: Int!
@@ -336,7 +336,7 @@ export const typeDefs = gql`
"""
Get weekly pull list from League of Comic Geeks
"""
getWeeklyPullList(input: WeeklyPullListInput!): PullListResponse!
getWeeklyPullList(input: WeeklyPullListInput!): MetadataPullListResponse!
"""
Fetch resource from Metron API