Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcweber committed Nov 22, 2023
1 parent a51e01d commit 4f4b124
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Core/Queries/Interfaces/IGremlinQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ public interface IGremlinQueryBaseRec<TSelf> : IGremlinQueryBase

TTargetQuery Map<TTargetQuery>(Func<TSelf, TTargetQuery> mapping) where TTargetQuery : IGremlinQueryBase;

TSelf Max();

TSelf Mean();

TSelf Min();

TSelf Not(Func<TSelf, IGremlinQueryBase> notTraversal);
TSelf None();

Expand All @@ -128,20 +134,14 @@ public interface IGremlinQueryBaseRec<TSelf> : IGremlinQueryBase

TSelf Skip(long count);

TSelf Sum();

TSelf Tail(long count);

TTargetQuery Union<TTargetQuery>(params Func<TSelf, TTargetQuery>[] unionTraversals) where TTargetQuery : IGremlinQueryBase;
IValueGremlinQuery<object> Union(params Func<TSelf, IGremlinQueryBase>[] traversals);

TSelf Where(Func<TSelf, IGremlinQueryBase> filterTraversal);

TSelf Sum();

TSelf Min();

TSelf Max();

TSelf Mean();
}

public interface IGremlinQueryBaseRec<TElement, TSelf> :
Expand Down

0 comments on commit 4f4b124

Please sign in to comment.