xonx

Results 32 comments of xonx
trafficstars

A Pr as per instructions of @nmn to add missing properties.

The error message "Cannot read properties of undefined (reading 'name')" indicates that the name argument is undefined within your resolver.In this updated version, we are using destructuring to extract the...

const requestListener = async (req, res) => { if (req.method === 'GET' && (req.url === '/' || req.url.startsWith('/graphql'))) { res.setHeader('Content-Type', 'application/json'); res.statusCode = 200; const urlParams = new URLSearchParams(req.url.split('?')[1]); const...

const http = require('http'); const { graphql, buildSchema } = require('graphql'); const schema = buildSchema(` type Query { hello: String greet(name: String): String } `); const rootValue = { hello:...

A rough idea from my side . what you think @TG1999 .

I would like to work on this issue . Till now i have able to get that we have to implement the backend verifier same as in the openCL and...

so after some research I have come to an solution to the issue as per your indications of going through backend of openCL.

Made a PR you can review. Update CMakeLists.txt #6094.

Put an pr @abrl91 if its looks right to you you can go forward with merging or if any difficulties we can discuss. Thanks.

Made a Pr -: https://github.com/tailcallhq/tailcallhq.github.io/pull/132#issue-2171107535