We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a92dc8 commit 03d09a8Copy full SHA for 03d09a8
docs/content/modeling/testing-models.mdx
@@ -51,8 +51,18 @@ model: |
51
current_time < grant_time + grant_duration
52
}
53
54
-# tuple_file: ./tuples.yaml # you can specify an external file, include it inline, or both
55
-tuples:
+# You can provide relationship tuples in one of the following ways:
+# - As a single external file using 'tuple_file'
56
+# - As multiple external files using 'tuple_files'
57
+# - Inline directly using 'tuples'
58
+#
59
+# Examples:
60
+# tuple_file: ./tuples.yaml # Single external file
61
+# tuple_files: # Multiple external files
62
+# - ./tuples_2.yaml
63
+# - ./tuples_3.yaml
64
+tuples: # Inline tuple definitions go here
65
+
66
67
# Anne is a member of the Acme organization
68
- user: user:anne
0 commit comments