We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca633ab commit 66c3cb2Copy full SHA for 66c3cb2
integration-tests/lts/dbschema/default.esdl
@@ -149,7 +149,7 @@ module default {
149
property c -> bool;
150
}
151
type Z {
152
- link xy -> W | X | Y;
+ multi link xy -> W | X | Y;
153
154
155
# Unicode handling
integration-tests/lts/interfaces.test.ts
@@ -43,7 +43,7 @@ export interface test_Profile extends BaseObject {
43
c?: string | null;
44
45
interface test_Z extends BaseObject {
46
- xy?: W | X | Y | null;
+ xy?: (W | X | Y)[];
47
48
interface test_User extends BaseObject {
49
username: string;
0 commit comments