0 I have my User object made based off of my prisma schema. I’m trying to create a RegisteredUserRes objectType where the field createdUser should be of type User from my prismaObject. How can I do that? import { builder } from ‘../builder’; import type PrismaTypes from ‘@pothos/plugin-prisma/generated’; builder.prismaObject(‘User’, { fields: t => ({ id: […]
0 I’ve been learning the mern stack from this book I’m now on Nested Routes under React Router chapter The web application is supposed to render this on the page. When clicking the Select link under the Action column, the description of an issue is displayed on the bottom part of the page. But in […]
0 I have the following model in my NextJs 13 app. I am using grafbase. // @ts-ignore const User = g .model(‘User’, { name: g.string().length({ min: 2, max: 100 }).optional(), email: g.string().unique(), password: g.string().optional(), active: g.boolean().optional(), allowReset: g.boolean().optional(), avatarUrl: g.url().optional(), }) .auth((rules) => { rules.public().read() rules.private().create().delete().update() }) // @ts-ignore const ActivateToken = g .model(‘ActivateToken’, { […]
-1 can i use page items in cursor base pagination? for example it’s possible to directly address a specific page. For instance, if the requirement is to jump directly to page five, it’s possible to do so since the pages themselves are not explicitly numbered. reactjs graphql apollo-client Share Improve this question Follow asked 39 […]
0 I am trying to fetch some data via NewRelic’s NerdGraph GraphQL API. url="https://api.newrelic.com/graphql" headers={"API-Key": api_key} nrql="""query{ actor { account(id: 1234) { name } } } """ response=requests.get(url=url, headers=headers, json={‘query’: nrql}) However, I am getting an error. {‘errors’: [{‘locations’: [{‘column’: 2, ‘line’: 1}], ‘message’: ‘syntax error before: "\"query\""’}]} The same query works in NerdGraph API […]
0 I’m new to graphql and opensearch queries. Here I’m trying to add a filter to existing query for city, my params inside the query are having data with – and spaces. While I’m trying to query it, data is getting filtered only with first word. For example, my params is having an array "cityNames" […]
0 Resolver file @Resolver() export class LaunchResolver { private readonly client: ApolloClient<any>; constructor() { this.client = new ApolloClient({ uri: ‘https://spacex-production.up.railway.app/graphql’, cache: new InMemoryCache(), }); } @Query(‘launches’) async getLaunches(): Promise<Launch[]> { const response = await this.client.query({ query: gql` query GetLaunches { launches { mission_name launch_date_utc } } `, }); return response.data.launches; } } I am running […]
1 Since Upwork is deprecating REST API support on December 15, I’ve started refactoring my application to support new GraphQL API. My main REST API requests are: Search Jobs: GET /api/profiles/v2/search/jobs.{format} Get Job Profile: GET /api/profiles/v1/jobs/{job_key}.{format} The problem is, GraphQL API Docs does not seem to have similar requests in "Search" directory. Only thing I […]
1 I have a sveltekit + apollo graphql project here. introspecting from my dev-env api here. The issue I’m having is the codegen with this config: import type { CodegenConfig } from ‘@graphql-codegen/cli’; const config: CodegenConfig = { schema: ‘<<<url>>>’, documents: ‘./src/lib/graphql-service/**/*.gql’, generates: { ‘./src/lib/graphql-service/generated.ts’: { plugins: [‘typescript’, ‘typescript-operations’, ‘graphql-codegen-svelte-apollo’] } }, watch: false }; […]