File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/FSharp.Data.GraphQL.Server Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -68,12 +68,16 @@ type Track =
6868/// of all properties and subproperties accessed in provided
6969/// ExecutionInfo with top level argument given as a root.
7070type Tracker =
71+ /// <summary>
7172 /// Leaf of the tree. Marks a direct field/property access with no sub-trees.
7273 /// Consists of <see cref="Track"/> record and (neglible in this case) list of arguments.
74+ /// </summary>
7375 | Direct of Track * Arg list
74- /// Marks branched field/property access - property value withh possible sub-trees.
76+ /// <summary>
77+ /// Marks branched field/property access - property value with possible sub-trees.
7578 /// Consists of <see cref="Track"/> record list of arguments used to parametrize GraphQL
7679 /// field definition and set of subtrees.
80+ /// </summary>
7781 | Compose of Track * Arg list * Set < Tracker >
7882 member x.Track =
7983 match x with
You can’t perform that action at this time.
0 commit comments