ent icon indicating copy to clipboard operation
ent copied to clipboard

have fieldEdge in StructType work in GraphQL and maybe ent?

Open lolopinto opened this issue 1 year ago • 0 comments

would be nice to have the following work

StructType({
  foo_list_id: UUIDListType({
    fieldEdge: {
      schema: 'Foo',
    },
  }),
  bar_id: UUIDType({
    fieldEdge: {
      schema: 'Bar',
    },
  }),
})

in GraphQL


foo_list: Foo[]!
bar: Bar

currently, in GraphQL we return ids

lolopinto avatar Aug 09 '23 17:08 lolopinto