0 i use… laravel v10.8 php 8.1 lighthouse v6.10 apollo-client 3.7.16 in lighthouse v5.41 we have extension that include category i was handle errors with this option… but in lighthouse v6.10 i can not get errors category how can i get it? laravel error-handling graphql laravel-lighthouse Share Follow asked 5 mins ago ali asghar sadat […]
0 I’m working on a Github automation script, for a specific task I need to know from a projectV2 and an issue number, get the date when the issue was added using the graphQL api. I tried projectcards but it concerns only the project item and not the projectV2. I tried to look at the […]
0 I have large JSON object returned by my nodejs API server. I want to give users ability to query subset of fields similar to GraphQL but without schema. Object that is returned by API have set of standard fields but also set of any custom fields that users can add to its "custom" property. […]
5 I’m totally new to GraphQL and wanted to play around with graphql-php in order to build a simple API to get started. I’m currently reading the docs and trying out the examples, but I’m stuck quite at the beginning. I want my schema to be stored in a schema.graphql file instead of building it […]
Hi there! letslearngraphql.com Did you know that it is possible to send messages legitimately? We are providing a new legitimate method of submitting appeals through contact forms. Such forms can be found on a plethora of websites. When such appeals are sent, no personal information is utilized, and messages are delivered to forms specifically created […]
0 In my schema.graphql I have set query: type Query { listCourses(param1: String, param2: String): [Course] and type Course: type Course { id: ID! fullname: String shortname: String idnumber: String summary: String } And in my frontend application I am calling this query that triggers lambda: async getDataByCodeType() { const query = /* GraphQL */ […]
0 I was given a link for a graphQL server with already built in queries and mutations. When I tried to run a mutation, I got the following response: { "data": {}, "errors": [ { "message": "Mime type of document could not be determined" } ] } What could be the problem and how can […]
10 If a C program has undefined behavior, anything can happen. Therefore compilers may assume that any given program does not contain UB. So, suppose our program contains the following: x += 5; /* Do something else without x in the meantime. */ x += 7; Of course, this can be optimized to /* Do […]
0 I successfully fetched data from Apollo GraphQL Server in Amber route using ember-apollo-client. I tried the same approach to have a service fetching data but I’m getting Uncaught TypeError: this.apollo.query is not a function from app/services/nav-categories.js. Minimal Working Example Start a new app using $ ember new super-rentals –lang en $ ember generate service […]