Skip to content

Commit

Permalink
Merge branch '560-start-node-shouldnt-have-an-input-node' of https://…
Browse files Browse the repository at this point in the history
…github.com/GenCaster/gencaster into 560-start-node-shouldnt-have-an-input-node
  • Loading branch information
vin-ni committed Sep 14, 2023
2 parents 309e55d + b645d7c commit 1441fa3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions caster-back/operations.gql
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ subscription graph($uuid: UUID!) {
positionX
positionY
color
isEntryNode
inNodeDoors {
...NodeDoorBasic
}
Expand Down Expand Up @@ -181,6 +182,7 @@ subscription node($uuid: UUID!) {
name
positionX
positionY
isEntryNode
scriptCells {
cellCode
cellOrder
Expand Down
2 changes: 1 addition & 1 deletion caster-editor/src/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1273,8 +1273,8 @@ export type NodeSubscription = {
name: string;
positionX: number;
positionY: number;
uuid: any;
isEntryNode: boolean;
uuid: any;
inNodeDoors: Array<{
uuid: any;
name: string;
Expand Down
4 changes: 4 additions & 0 deletions caster-front/src/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1229,6 +1229,7 @@ export type GraphSubscription = {
positionX: number;
positionY: number;
color: string;
isEntryNode: boolean;
scriptCells: Array<{
cellCode: string;
cellOrder: number;
Expand Down Expand Up @@ -1272,6 +1273,7 @@ export type NodeSubscription = {
name: string;
positionX: number;
positionY: number;
isEntryNode: boolean;
uuid: any;
inNodeDoors: Array<{
uuid: any;
Expand Down Expand Up @@ -1901,6 +1903,7 @@ export const GraphDocument = gql`
positionX
positionY
color
isEntryNode
inNodeDoors {
...NodeDoorBasic
}
Expand Down Expand Up @@ -1938,6 +1941,7 @@ export const NodeDocument = gql`
name
positionX
positionY
isEntryNode
scriptCells {
cellCode
cellOrder
Expand Down

0 comments on commit 1441fa3

Please sign in to comment.