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!
}
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!
}