This repository was archived by the owner on Aug 29, 2020. It is now read-only.
File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ query: |
25
25
RETURN t
26
26
)
27
27
// Fetch the parent unversioned object
28
- LET parent = (
28
+ LET parent = FIRST (
29
29
FOR parent IN 1 OUTBOUND v ws_version_of
30
30
LIMIT 1
31
31
RETURN parent
32
32
)
33
33
// Fetch the workspace for this object
34
- LET ws = (
34
+ LET ws = FIRST (
35
35
FOR ws IN 1 INBOUND parent ws_workspace_contains_obj
36
36
LIMIT 1
37
37
RETURN ws
@@ -52,13 +52,13 @@ query: |
52
52
RETURN t
53
53
)
54
54
// Fetch the parent unversioned object
55
- LET parent = (
55
+ LET parent = FIRST (
56
56
FOR parent IN 1 OUTBOUND v ws_version_of
57
57
LIMIT 1
58
58
RETURN parent
59
59
)
60
60
// Fetch the workspace for this object
61
- LET ws = (
61
+ LET ws = FIRST (
62
62
FOR ws IN 1 INBOUND parent ws_workspace_contains_obj
63
63
LIMIT 1
64
64
RETURN ws
@@ -79,13 +79,13 @@ query: |
79
79
RETURN t
80
80
)
81
81
// Fetch the parent unversioned object
82
- LET parent = (
82
+ LET parent = FIRST (
83
83
FOR parent IN 1 OUTBOUND v ws_version_of
84
84
LIMIT 1
85
85
RETURN parent
86
86
)
87
87
// Fetch the workspace for this object
88
- LET ws = (
88
+ LET ws = FIRST (
89
89
FOR ws IN 1 INBOUND parent ws_workspace_contains_obj
90
90
LIMIT 1
91
91
RETURN ws
You can’t perform that action at this time.
0 commit comments