⬇ Import flow fixes

This commit is contained in:
2026-03-05 13:33:48 -05:00
parent cc30dcc14f
commit 71267ecc7e
5 changed files with 124 additions and 13 deletions

View File

@@ -135,7 +135,7 @@ export async function importComicViaGraphQL(
}
try {
const result: any = await broker.call("graphql.query", {
const result: any = await broker.call("graphql.graphql", {
query: mutation,
variables: { input },
});
@@ -183,7 +183,7 @@ export async function updateSourcedMetadataViaGraphQL(
`;
try {
const result: any = await broker.call("graphql.query", {
const result: any = await broker.call("graphql.graphql", {
query: mutation,
variables: {
comicId,
@@ -229,7 +229,7 @@ export async function resolveMetadataViaGraphQL(
`;
try {
const result: any = await broker.call("graphql.query", {
const result: any = await broker.call("graphql.graphql", {
query: mutation,
variables: { comicId },
});
@@ -287,7 +287,7 @@ export async function getComicViaGraphQL(
`;
try {
const result: any = await broker.call("graphql.query", {
const result: any = await broker.call("graphql.graphql", {
query,
variables: { id: comicId },
});
@@ -336,7 +336,7 @@ export async function analyzeMetadataConflictsViaGraphQL(
`;
try {
const result: any = await broker.call("graphql.query", {
const result: any = await broker.call("graphql.graphql", {
query,
variables: { comicId },
});
@@ -373,7 +373,7 @@ export async function bulkResolveMetadataViaGraphQL(
`;
try {
const result: any = await broker.call("graphql.query", {
const result: any = await broker.call("graphql.graphql", {
query: mutation,
variables: { comicIds },
});