Skip to content

Commit

Permalink
Fix typo in the Data Filtering guide (#1731)
Browse files Browse the repository at this point in the history
Co-authored-by: Gabe Jackson <[email protected]>
  • Loading branch information
WaldoJeffers and gj authored Nov 18, 2023
1 parent dcf3256 commit 2c3813e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/any/guides/data_filtering/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ A `{{% exampleGet "filterName" %}}` is a representation of a query. It is very s
It has four fields:

- `{{% exampleGet "filterRoot" %}}` Is the name of the type we are filtering.
- {{% exampleGet "filterRelations" %}} Are named relations to other types, typically turned into joins.
- `{{% exampleGet "filterRelations" %}}` Are named relations to other types, typically turned into joins.
- `{{% exampleGet "filterConditions" %}}` Are the individual pieces of logic that must be true with respect to objects
matching the filter. These typically get turned into where clauses.
- `{{% exampleGet "filterTypes" %}}` Is a map from type names to user type information, including registered relations.
Expand Down

1 comment on commit 2c3813e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rust Benchmark

Benchmark suite Current: 2c3813e Previous: dcf3256 Ratio
rust_get_attribute 28523 ns/iter (± 1130) 28809 ns/iter (± 1057) 0.99
n_plus_one/100 1518334 ns/iter (± 25452) 1527251 ns/iter (± 26136) 0.99
n_plus_one/500 7362520 ns/iter (± 200785) 7387941 ns/iter (± 235574) 1.00
n_plus_one/1000 14564705 ns/iter (± 944152) 14724366 ns/iter (± 100504) 0.99
unify_once 697 ns/iter (± 8) 623 ns/iter (± 310) 1.12
unify_twice 1955 ns/iter (± 22) 1729 ns/iter (± 19) 1.13
many_rules 40918 ns/iter (± 918) 38800 ns/iter (± 897) 1.05
fib/5 352881 ns/iter (± 6015) 347384 ns/iter (± 14919) 1.02
prime/3 10712 ns/iter (± 428) 10343 ns/iter (± 371) 1.04
prime/23 10687 ns/iter (± 408) 10348 ns/iter (± 447) 1.03
prime/43 10692 ns/iter (± 469) 10354 ns/iter (± 411) 1.03
prime/83 10681 ns/iter (± 527) 10352 ns/iter (± 373) 1.03
prime/255 9499 ns/iter (± 391) 9322 ns/iter (± 407) 1.02
indexed/100 3673 ns/iter (± 414) 3470 ns/iter (± 343) 1.06
indexed/500 4214 ns/iter (± 1435) 4039 ns/iter (± 1232) 1.04
indexed/1000 4586 ns/iter (± 226) 4449 ns/iter (± 583) 1.03
indexed/10000 9178 ns/iter (± 1526) 8619 ns/iter (± 2404) 1.06
not 4319 ns/iter (± 183) 4091 ns/iter (± 53) 1.06
double_not 8614 ns/iter (± 145) 8592 ns/iter (± 136) 1.00
De_Morgan_not 5703 ns/iter (± 82) 5524 ns/iter (± 90) 1.03
load_policy 692023 ns/iter (± 14852) 686829 ns/iter (± 18889) 1.01
partial_and/1 21314 ns/iter (± 593) 20972 ns/iter (± 596) 1.02
partial_and/5 70577 ns/iter (± 2483) 69048 ns/iter (± 1898) 1.02
partial_and/10 132807 ns/iter (± 3382) 130161 ns/iter (± 5133) 1.02
partial_and/20 278927 ns/iter (± 4712) 271864 ns/iter (± 5670) 1.03
partial_and/40 610662 ns/iter (± 10344) 594206 ns/iter (± 8587) 1.03
partial_and/80 1424471 ns/iter (± 12860) 1376997 ns/iter (± 8731) 1.03
partial_and/100 1895939 ns/iter (± 80019) 1837192 ns/iter (± 9679) 1.03
partial_rule_depth/1 64374 ns/iter (± 2173) 62922 ns/iter (± 2472) 1.02
partial_rule_depth/5 223237 ns/iter (± 5838) 216087 ns/iter (± 6460) 1.03
partial_rule_depth/10 508028 ns/iter (± 9764) 489765 ns/iter (± 9052) 1.04
partial_rule_depth/20 1448233 ns/iter (± 21805) 1401071 ns/iter (± 16223) 1.03
partial_rule_depth/40 5167962 ns/iter (± 69135) 5029401 ns/iter (± 44483) 1.03
partial_rule_depth/80 28703082 ns/iter (± 284584) 28165898 ns/iter (± 269002) 1.02
partial_rule_depth/100 51572649 ns/iter (± 694986) 50694029 ns/iter (± 1343711) 1.02

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.