Entity refactor. Facilitating channels without parent.

This commit is contained in:
2020-06-28 00:15:13 +02:00
parent 0e8b4caac3
commit 3462d7af2a
50 changed files with 934 additions and 1964 deletions

View File

@@ -1,29 +1,33 @@
const siteFragment = `
site: entity {
entity {
id
name
slug
url
network: parent {
type
parent {
id
name
slug
url
type
}
}
`;
const sitesFragment = `
sites {
entities {
id
name
slug
url
network {
type
parent {
id
name
slug
url
type
}
}
`;