Income Sources :: Jobs :: 2022 :: HP :: Lens :: Repos :: poly-glass :: team-mo :: match-maker :: GraphQL :: resolvers
⪼ Made with 💜 by realpolyglot.com
entityConnections(params: { type: External, directional: true }) {
edges {
node {
type
targetEntity {
id
hardwareModel
}
}
}
}
query Device {
device(id: "948017ED-CE27-4EBF-A2C1-D8972548E22E") {
id
name
hardwareModel
entityConnections(params: { directional: true, type: External }) {
edges {
node {
type
targetEntity {
id
hardwareModel
}
}
}
}
}
}
{
"data": {
"device": {
"id": "948017ed-ce27-4ebf-a2c1-d8972548e22e",
"name": null,
"hardwareModel": null,
"entityConnections": {
"edges": [
{
"node": {
"type": "external",
"targetEntity": {
"id": "eb8bb32f-82a2-4e15-91d5-d87d02da1640",
"hardwareModel": null
}
}
}
]
}
}
}
}
query DeviceConnections {
deviceConnections(
deviceId: "948017ED-CE27-4EBF-A2C1-D8972548E22E"
type: External
) {
entityId
targetEntityId
targetEntityType
type
}
}
{
"data": {
"deviceConnections": [
{
"entityId": "948017ed-ce27-4ebf-a2c1-d8972548e22e",
"targetEntityId": "eb8bb32f-82a2-4e15-91d5-d87d02da1640",
"targetEntityType": "user",
"type": "external"
},
{
"entityId": "eb8bb32f-82a2-4e15-91d5-d87d02da1640",
"targetEntityId": "948017ed-ce27-4ebf-a2c1-d8972548e22e",
"targetEntityType": "device",
"type": "external"
}
]
}
}
- src/repos/EntityConnectionRepo.ts
- src/resolvers/DeviceResolver.ts
- src/resolvers/EntityConnectionResolver.ts
- src/services/entity.connection.service.compat.ts
- src/services/entity.connection.service.ts