imperfect-fourth / eywa

A flexible ORM-style GraphQL client
7 stars 0 forks source link

support for a model that is present inside a model #17

Open scriptnull opened 1 month ago

scriptnull commented 1 month ago

type ObjA struct {
  PropertyB *ObjA `json:"object_b"`
}

type ObjB struct {
  PropertyC bool
  PropertyD string
}

I want to form a gql query which could query PropertyC and PropertyD associated with the ObjA via objB. Is there a way to do it now?