(ctx context.Context, node *graph.Node, params EntityQueryParameters, cacheEnabled bool)
| 1013 | } |
| 1014 | |
| 1015 | func (s *GraphQuery) runCountQuery(ctx context.Context, node *graph.Node, params EntityQueryParameters, cacheEnabled bool) (any, int, error) { |
| 1016 | result, err := s.runMaybeCachedEntityQuery(ctx, node, params, cacheEnabled) |
| 1017 | return nil, result.Len(), err |
| 1018 | } |
| 1019 | |
| 1020 | func (s *GraphQuery) runPathQuery(ctx context.Context, primaryDisplayKinds graphschema.PrimaryDisplayKinds, node *graph.Node, pathDelegate any) (map[string]any, int, error) { |
| 1021 | var ( |
no test coverage detected