From fbd0558c12a63b680a86d903c0a27043d57e8d3f Mon Sep 17 00:00:00 2001 From: Dylan Young <5227854+dylanyoung-dev@users.noreply.github.com> Date: Tue, 13 Feb 2024 16:12:19 -0500 Subject: [PATCH] Yes this is really the issue ;) --- src/GraphQL/Queries/Prompts.gql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/GraphQL/Queries/Prompts.gql b/src/GraphQL/Queries/Prompts.gql index e55796c9..c13bc62a 100644 --- a/src/GraphQL/Queries/Prompts.gql +++ b/src/GraphQL/Queries/Prompts.gql @@ -72,7 +72,10 @@ query GetAllPromptsQuery { } query GetPromptsByThemeAndPersonaQuery($themeId: ID!, $personaId: ID!) { - allPrompt(where: { AND: [{ theme: { prompt_ids: $themeId } }, { persona: { prompt_ids: $personaId } }] }) { + allPrompt( + first: 1000 + where: { AND: [{ theme: { prompt_ids: $themeId } }, { persona: { prompt_ids: $personaId } }] } + ) { results { ...PromptDetails }