Coder Social home page Coder Social logo

Comments (4)

hayes avatar hayes commented on July 17, 2024

The default isTypeOf only works if you use a class as the type param, or the shape associated with the type ref has a _type property that can be used to match again.

Something like:
builder.node(SomeClass, {... options}) or builder.node(builder.objectRef<{_type: 'SomeType'}>('SomeType'), {... options})

On a phone, so not sure how clear that is. If you are using one of these patterns, and still seeing type errors, some more context on how you are calling the node function would be helpful

from pothos.

pixelmund avatar pixelmund commented on July 17, 2024

I'm at work right now, i can give a proper example in a few days. But i just tried your suggestion

builder.node(builder.objectRef<{ _type: 'SomeType'; id: string }>('SomeType'), {
	id: {
		resolve: (node) => node.id
	},
	fields: (t) => ({ id: t.exposeID('id') })
});

It's still yelling about isTypeOf is required.
If i create a class it goes away, but since my data usually is not represented in classes rather coming from prisma i don't know what the best way is to create nodes.

Also with the objectRef approach would i have to add _type to every object? Or am i misunderstanding something.

from pothos.

hayes avatar hayes commented on July 17, 2024

Sorry, small typo there, it should be __type, and yes, you would need to add the type to each instance of the node you resolve.

The issue isTypeOf solves is that when there is a field that resolves to the Node interface, graphql needs be able to figure out which type is actually being resolved. If the node is being loaded through the default node or nodes queries we could determine what type the node is, but for custom fields that return nodes all we know is we got an object back and need to figure out what type it's supposed to be. If it's an instance of a class, or the object has a property that tells us the type, we can create a default isTypeOf method that can use an instanceof check, or read the type property. Lacking those, we don't have another way to figure out what the type should be, which is why it becomes required.

I've got a few ideas on how to make this better in the future, but currently you need to manually provide a way to resolve the type of a node.

In the mean time, I don't have a great solution for Prisma. I know some people actually just add the graphql type into their db. This is obviously not ideal. There is a feature request out in Prisma to include the tabel/model name in query results. This would make it trivial to write the isTypeOf functions. Adding on the __type property manually is not perfect, but it might be the

from pothos.

pixelmund avatar pixelmund commented on July 17, 2024

@hayes That makes much more sense now, thank you! I will go ahead and close this issue for now.

from pothos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.