How to model many to many connection?

Hi @hawok

I’m using GraphQL schema but you can map this to a dql schema as well:

type Domain {
  DomainID: ID!
  name: String!
}

type Connections {
  ConnectionID: ID!
  source_domain: Domain!
  target_domain: Domain!
  links: Int!
}
1 Like