Akshaya Acharya
Akshaya Acharya
Looks good!
@EloB Hey, I was exploring some different ways a Relay-like API could work. For Hasura v3, we have committed to the Relay spec as is. Expect to see some updates...
If you're using jest, you can use ts-jest
Non null database columns on any table should show up as non null graphql types. Does the join table have not null constraints applied to the join columns?
I understand the issue now, the relationships themselves should be non nullable, not the fields. We will get back to you. (editing this message to reflect my updated understanding)
@arjunyel had a word with the team For a general relationship, although the key may be present on the source table, it is not guaranteed that the corresponding row is...
DDN calls this `global id` This needs to be configured on the Model https://hasura.io/docs/3.0/supergraph-modeling/models ``` kind: Model version: v1 definition: globalIdSource: true ``` And also on the ObjectType https://hasura.io/docs/3.0/supergraph-modeling/types/ ```...