Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions arangodb-net-standard/CursorApi/Models/PostCursorOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,14 @@ public class PostCursorOptions
/// This feature is only available in the Enterprise Edition.
/// </summary>
public bool? SkipInaccessibleCollections { get; set; }

/// <summary>
/// This query option can be used in complex queries in case the query optimizer cannot
/// automatically detect that the query can be limited to only a single DBServer (e.g., in a
/// disjoint smart graph case). Set this to the shard key value that should be used to force
/// execution on one shard. If set incorrectly (i.e., a wrong shard key value), the query may
/// be shipped to the wrong DBServer and return no results (empty result set). Use at your own risk.
/// </summary>
public string ForceOneShardAttributeValue { get; set; }
}
}