-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor correction to new text predicates section. #115
- Loading branch information
1 parent
2c07473
commit ec8b660
Showing
1 changed file
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,9 @@ PRACTICAL GREMLIN: An Apache TinkerPop Tutorial | |
=============================================== | ||
Kelvin R. Lawrence <[email protected]> | ||
//v281 (TP 3.3.5), January 28th 2019 | ||
<<<<<<< HEAD | ||
v282-preview, July 12th 2019 | ||
// vim: set tw=85 cc=+1 wrap spell redrawtime=20000: | ||
// Sun Jul 14, 2019 10:48:58 CDT | ||
======= | ||
v282-preview, July 9th 2019 | ||
// vim: set tw=85 cc=+1 wrap spell redrawtime=20000: | ||
// Tue Jul 09, 2019 13:58:11 CDT | ||
>>>>>>> e5447a21284709eba91d6d0b177de412a2b47c2d | ||
// Sun Jul 14, 2019 11:48:30 CDT | ||
//:Author: Kelvin R. Lawrence | ||
//:Email: [email protected] | ||
:Numbered: | ||
|
@@ -4499,8 +4493,8 @@ insensitive search you can chain multiple steps together combined by an 'or' ste | |
|
||
NOTE: All of these predicates are *_case sensitive_*. | ||
|
||
These predicates add to the existing Gremlin predicates that we looked at in the <<>> | ||
section. | ||
These predicates add to the existing Gremlin predicates that we looked at in the | ||
<<tranges>> section. | ||
|
||
[[startingwith]] | ||
startingWith | ||
|
@@ -4542,7 +4536,7 @@ is used to get rid of any duplicate names in the results. | |
[source,groovy] | ||
---- | ||
g.V().hasLabel('airport'). | ||
has('city',TextP.startingWith('Dal')). | ||
has('city',startingWith('Dal')). | ||
values('city'). | ||
dedup(). | ||
fold() | ||
|